Changeset 280596 in webkit
- Timestamp:
- Aug 3, 2021, 9:44:02 AM (5 years ago)
- Location:
- branches/safari-612.1.15.4-branch/Source/WebInspectorUI
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
WebInspectorUI.vcxproj/WebInspectorUI.make (modified) (1 diff)
-
WebInspectorUI.vcxproj/build-webinspectorui.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-612.1.15.4-branch/Source/WebInspectorUI/ChangeLog
r277289 r280596 1 2021-08-03 Russell Epstein <repstein@apple.com> 2 3 Cherry-pick r280574. rdar://problem/81466166 4 5 Web Inspector: [AppleWin] Speculative internal build fix for copying `InspectorBackendCommands.js` 6 https://bugs.webkit.org/show_bug.cgi?id=228716 7 8 Reviewed by Maciej Stachowiak. 9 10 Speculative fix for AppleWin port internal build by using the correct directory for JSC headers. Also update the 11 logging message to reflect that the file will by copied later in the build. 12 13 * WebInspectorUI.vcxproj/WebInspectorUI.make: 14 * WebInspectorUI.vcxproj/build-webinspectorui.pl: 15 16 17 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280574 268f45cc-cd09-0410-ab3c-d52691b4dbfc 18 19 2021-08-02 Patrick Angle <pangle@apple.com> 20 21 Web Inspector: [AppleWin] Speculative internal build fix for copying `InspectorBackendCommands.js` 22 https://bugs.webkit.org/show_bug.cgi?id=228716 23 24 Reviewed by Maciej Stachowiak. 25 26 Speculative fix for AppleWin port internal build by using the correct directory for JSC headers. Also update the 27 logging message to reflect that the file will by copied later in the build. 28 29 * WebInspectorUI.vcxproj/WebInspectorUI.make: 30 * WebInspectorUI.vcxproj/build-webinspectorui.pl: 31 1 32 2021-05-10 Devin Rousso <drousso@apple.com> 2 33 -
branches/safari-612.1.15.4-branch/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make
r205192 r280596 10 10 if errorlevel 1 exit 1 11 11 12 @xcopy /y /e " ..\AppleInternal\include\private\JavaScriptCore\inspector\InspectorBackendCommands.js" "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI\Protocol"12 @xcopy /y /e "%JAVASCRIPTCORE_PRIVATE_HEADERS_DIR%\inspector\InspectorBackendCommands.js" "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI\Protocol" 13 13 if errorlevel 1 exit 1 14 14 -
branches/safari-612.1.15.4-branch/Source/WebInspectorUI/WebInspectorUI.vcxproj/build-webinspectorui.pl
r226395 r280596 76 76 77 77 # Copy over dynamically loaded files from other frameworks, even if we aren't combining resources. 78 my $jsFrom = File::Spec->catfile( $ENV{'JAVASCRIPTCORE_PRIVATE_HEADERS_DIR'}, 'InspectorBackendCommands.js');78 my $jsFrom = File::Spec->catfile(File::Spec->catdir($ENV{'JAVASCRIPTCORE_PRIVATE_HEADERS_DIR'}, 'inspector'), 'InspectorBackendCommands.js'); 79 79 my $jsTo = File::Spec->catfile($protocolDir, 'InspectorBackendCommands.js'); 80 print " Copying Inspector bindingsfrom $jsFrom to $jsTo\n";80 print "Inspector bindings will be copied from $jsFrom to $jsTo\n"; 81 81 82 82 my $copyResourcesCommand = File::Spec->catfile($XSRCROOT, 'Scripts', 'copy-user-interface-resources.pl');
Note:
See TracChangeset
for help on using the changeset viewer.