Changeset 280574 in webkit
- Timestamp:
- Aug 2, 2021, 5:55:06 PM (5 years ago)
- Location:
- trunk/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
-
trunk/Source/WebInspectorUI/ChangeLog
r280566 r280574 1 2021-08-02 Patrick Angle <pangle@apple.com> 2 3 Web Inspector: [AppleWin] Speculative internal build fix for copying `InspectorBackendCommands.js` 4 https://bugs.webkit.org/show_bug.cgi?id=228716 5 6 Reviewed by Maciej Stachowiak. 7 8 Speculative fix for AppleWin port internal build by using the correct directory for JSC headers. Also update the 9 logging message to reflect that the file will by copied later in the build. 10 11 * WebInspectorUI.vcxproj/WebInspectorUI.make: 12 * WebInspectorUI.vcxproj/build-webinspectorui.pl: 13 1 14 2021-08-02 Nikita Vasilyev <nvasilyev@apple.com> 2 15 -
trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make
r205192 r280574 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 -
trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/build-webinspectorui.pl
r226395 r280574 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.