Changeset 63696 in webkit


Ignore:
Timestamp:
Jul 19, 2010 4:19:15 PM (14 years ago)
Author:
Joseph Pecoraro
Message:

2010-07-19 Joseph Pecoraro <Joseph Pecoraro>

Reviewed by Mark Rowe.

Web Inspector: Do Not Copy *.re2js Inspector Resources in XCode Build Phase
https://bugs.webkit.org/show_bug.cgi?id=42601

Remove *.re2js files after copying them over in the Build Phase. We do
the same to remove the WebKit.qrc file.

  • WebCore.xcodeproj/project.pbxproj:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63689 r63696  
     12010-07-19  Joseph Pecoraro  <joepeck@webkit.org>
     2
     3        Reviewed by Mark Rowe.
     4
     5        Web Inspector: Do Not Copy *.re2js Inspector Resources in XCode Build Phase
     6        https://bugs.webkit.org/show_bug.cgi?id=42601
     7
     8        Remove *.re2js files after copying them over in the Build Phase. We do
     9        the same to remove the WebKit.qrc file.
     10
     11        * WebCore.xcodeproj/project.pbxproj:
     12
    1132010-07-17  Tony Gentilcore  <tonyg@chromium.org>
    214
  • trunk/WebCore/WebCore.xcodeproj/project.pbxproj

    r63638 r63696  
    1996019960                        runOnlyForDeploymentPostprocessing = 0;
    1996119961                        shellPath = /bin/sh;
    19962                         shellScript = "# Copy all the Inspector front-end resources.\nditto \"${SRCROOT}/inspector/front-end\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector\"\n\n# Remove the WebKit.qrc file since it is not used on the Mac (this file is for Qt)\nrm -f \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector/WebKit.qrc\"\n";
     19962                        shellScript = "# Copy all the Inspector front-end resources.\nditto \"${SRCROOT}/inspector/front-end\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector\"\n\n# Remove the WebKit.qrc file since it is not used on the Mac (this file is for Qt)\nrm -f \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector/WebKit.qrc\"\n\n# Remove *.re2js files, they are only used to generate some .js files.\nrm -f \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector/\"*.re2js\n";
    1996319963                };
    1996419964                5D0D540D0E9862F60029E223 /* Check For Weak VTables and Externals */ = {
Note: See TracChangeset for help on using the changeset viewer.