⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280574 in webkit


Ignore:
Timestamp:
Aug 2, 2021, 5:55:06 PM (5 years ago)
Author:
Patrick Angle
Message:

Web Inspector: [AppleWin] Speculative internal build fix for copying InspectorBackendCommands.js
https://bugs.webkit.org/show_bug.cgi?id=228716

Reviewed by Maciej Stachowiak.

Speculative fix for AppleWin port internal build by using the correct directory for JSC headers. Also update the
logging message to reflect that the file will by copied later in the build.

  • WebInspectorUI.vcxproj/WebInspectorUI.make:
  • WebInspectorUI.vcxproj/build-webinspectorui.pl:
Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r280566 r280574  
     12021-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
    1142021-08-02  Nikita Vasilyev  <nvasilyev@apple.com>
    215
  • trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make

    r205192 r280574  
    1010        if errorlevel 1 exit 1
    1111
    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"
    1313        if errorlevel 1 exit 1
    1414
  • trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/build-webinspectorui.pl

    r226395 r280574  
    7676
    7777# 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');
     78my $jsFrom = File::Spec->catfile(File::Spec->catdir($ENV{'JAVASCRIPTCORE_PRIVATE_HEADERS_DIR'}, 'inspector'), 'InspectorBackendCommands.js');
    7979my $jsTo = File::Spec->catfile($protocolDir, 'InspectorBackendCommands.js');
    80 print "Copying Inspector bindings from $jsFrom to $jsTo\n";
     80print "Inspector bindings will be copied from $jsFrom to $jsTo\n";
    8181
    8282my $copyResourcesCommand = File::Spec->catfile($XSRCROOT, 'Scripts', 'copy-user-interface-resources.pl');
Note: See TracChangeset for help on using the changeset viewer.