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

Changeset 280596 in webkit


Ignore:
Timestamp:
Aug 3, 2021, 9:44:02 AM (5 years ago)
Author:
Russell Epstein
Message:

Cherry-pick r280574. rdar://problem/81466166

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:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280574 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-612.1.15.4-branch/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-612.1.15.4-branch/Source/WebInspectorUI/ChangeLog

    r277289 r280596  
     12021-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
    1322021-05-10  Devin Rousso  <drousso@apple.com>
    233
  • branches/safari-612.1.15.4-branch/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make

    r205192 r280596  
    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
  • branches/safari-612.1.15.4-branch/Source/WebInspectorUI/WebInspectorUI.vcxproj/build-webinspectorui.pl

    r226395 r280596  
    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.