Changeset 80390 in webkit


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

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

Reviewed by Dimitri Glazkov.

Add Copy Files step to JavaScriptCore GYP build for apitest and minidom
https://bugs.webkit.org/show_bug.cgi?id=55798

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r80389 r80390  
     12011-03-04  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Add Copy Files step to JavaScriptCore GYP build for apitest and minidom
     6        https://bugs.webkit.org/show_bug.cgi?id=55798
     7
     8        * JavaScriptCore.gypi:
     9        * gyp/JavaScriptCore.gyp:
     10
    1112011-03-04  Adam Barth  <abarth@webkit.org>
    212
  • trunk/Source/JavaScriptCore/JavaScriptCore.gypi

    r80368 r80390  
    674674            'API/tests/minidom.c',
    675675        ],
     676        'minidom_support_files': [
     677            'API/tests/minidom.js',
     678        ],
    676679        'testapi_files': [
    677680            'API/tests/testapi.c',
    678681        ],
     682        'testapi_support_files': [
     683            'API/tests/testapi.js',
     684        ],
    679685        'jsc_files': [
    680686            'jsc.cpp',
  • trunk/Source/JavaScriptCore/gyp/JavaScriptCore.gyp

    r80387 r80390  
    169169        '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
    170170      ],
     171      'copies': [{
     172        'destination': '<(PRODUCT_DIR)',
     173        'files': [
     174          '<@(minidom_support_files)',
     175        ],
     176      }],
    171177    },
    172178    {
     
    184190        '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
    185191      ],
     192      'copies': [{
     193        'destination': '<(PRODUCT_DIR)',
     194        'files': [
     195          '<@(testapi_support_files)',
     196        ],
     197      }],
    186198    },
    187199    {
Note: See TracChangeset for help on using the changeset viewer.