Changeset 81706 in webkit


Ignore:
Timestamp:
Mar 22, 2011 2:51:59 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-03-22 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Add the remaining steps to WebCore GYP build
https://bugs.webkit.org/show_bug.cgi?id=56864

These steps match the normal build. After this patch, I believe the
WebCore GYP build is complete.

  • WebCore.gypi:
  • gyp/WebCore.gyp:
  • gyp/copy-inspector-resources.sh: Added.
Location:
trunk/Source/WebCore
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r81704 r81706  
     12011-03-22  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Add the remaining steps to WebCore GYP build
     6        https://bugs.webkit.org/show_bug.cgi?id=56864
     7
     8        These steps match the normal build.  After this patch, I believe the
     9        WebCore GYP build is complete.
     10
     11        * WebCore.gypi:
     12        * gyp/WebCore.gyp:
     13        * gyp/copy-inspector-resources.sh: Added.
     14
    1152011-03-22  Beth Dakin  <bdakin@apple.com>
    216
  • trunk/Source/WebCore/WebCore.gypi

    r81695 r81706  
    62476247            'xml/XSLTUnicodeSort.h',
    62486248        ],
     6249        'webcore_resource_files': [
     6250            'English.lproj/Localizable.strings',
     6251            'English.lproj/localizedStrings.js',
     6252            'Resources/aliasCursor.png',
     6253            'Resources/cellCursor.png',
     6254            'Resources/contextMenuCursor.png',
     6255            'Resources/copyCursor.png',
     6256            'Resources/crossHairCursor.png',
     6257            'Resources/deleteButton.tiff',
     6258            'Resources/deleteButtonPressed.tiff',
     6259            'Resources/eastResizeCursor.png',
     6260            'Resources/eastWestResizeCursor.png',
     6261            'Resources/helpCursor.png',
     6262            'Resources/inputSpeech.tiff',
     6263            'Resources/linkCursor.png',
     6264            'Resources/missingImage.tiff',
     6265            'Resources/moveCursor.png',
     6266            'Resources/noDropCursor.png',
     6267            'Resources/noneCursor.png',
     6268            'Resources/northEastResizeCursor.png',
     6269            'Resources/northEastSouthWestResizeCursor.png',
     6270            'Resources/northResizeCursor.png',
     6271            'Resources/northSouthResizeCursor.png',
     6272            'Resources/northWestResizeCursor.png',
     6273            'Resources/northWestSouthEastResizeCursor.png',
     6274            'Resources/notAllowedCursor.png',
     6275            'Resources/progressCursor.png',
     6276            'Resources/southEastResizeCursor.png',
     6277            'Resources/southResizeCursor.png',
     6278            'Resources/southWestResizeCursor.png',
     6279            'Resources/textAreaResizeCorner.tiff',
     6280            'Resources/verticalTextCursor.png',
     6281            'Resources/waitCursor.png',
     6282            'Resources/westResizeCursor.png',
     6283            'Resources/zoomInCursor.png',
     6284            'Resources/zoomOutCursor.png',
     6285        ],
    62496286        'webinspector_files': [
    6250 
    62516287            'inspector/front-end/inspector.html',
    62526288            'inspector/front-end/ApplicationCacheItemsView.js',
  • trunk/Source/WebCore/gyp/WebCore.gyp

    r81695 r81706  
    135135        '<@(webcore_privateheader_files)',
    136136      ],
     137      'mac_bundle_resources': [
     138        '<@(webcore_resource_files)',
     139      ],
    137140      'xcode_config_file': '<(project_dir)/Configurations/WebCore.xcconfig',
    138141      'actions': [
     
    143146          'action': [
    144147            'sh', '<(project_dir)/gyp/copy-forwarding-and-icu-headers.sh'
     148          ],
     149        },
     150        {
     151          'action_name': 'Copy Inspector Resources',
     152          'inputs': [],
     153          'outputs': [],
     154          'action': [
     155            'sh', '<(project_dir)/gyp/copy-inspector-resources.sh'
    145156          ],
    146157        },
Note: See TracChangeset for help on using the changeset viewer.