Changeset 80418 in webkit


Ignore:
Timestamp:
Mar 5, 2011 3:09:42 AM (13 years ago)
Author:
abarth@webkit.org
Message:

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

Reviewed by Dimitri Glazkov.

Add Derived Sources to WebCore GYP build
https://bugs.webkit.org/show_bug.cgi?id=55813

Rename the action to be friendlier.

  • gyp/JavaScriptCore.gyp:

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

Reviewed by Dimitri Glazkov.

Add Derived Sources to WebCore GYP build
https://bugs.webkit.org/show_bug.cgi?id=55813

Adding the derived source action to the GYP file required tweaking
DerivedSources.make. I'm not sure how DerivedSources.make worked
before beause these paths were incorrectly based.

  • DerivedSources.make:
  • gyp/generate-derived-sources.sh: Added.
  • gyp/WebCore.gyp:
Location:
trunk/Source
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r80407 r80418  
     12011-03-05  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Add Derived Sources to WebCore GYP build
     6        https://bugs.webkit.org/show_bug.cgi?id=55813
     7
     8        Rename the action to be friendlier.
     9
     10        * gyp/JavaScriptCore.gyp:
     11
    1122011-03-04  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
    213
  • trunk/Source/JavaScriptCore/gyp/JavaScriptCore.gyp

    r80390 r80418  
    135135      'type': 'none',
    136136      'actions': [{
    137         'action_name': 'generate_derived_sources',
     137        'action_name': 'Generate Derived Sources',
    138138        'inputs': [],
    139139        'outputs': [],
  • trunk/Source/WebCore/ChangeLog

    r80416 r80418  
     12011-03-05  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Add Derived Sources to WebCore GYP build
     6        https://bugs.webkit.org/show_bug.cgi?id=55813
     7
     8        Adding the derived source action to the GYP file required tweaking
     9        DerivedSources.make.  I'm not sure how DerivedSources.make worked
     10        before beause these paths were incorrectly based.
     11
     12        * DerivedSources.make:
     13        * gyp/generate-derived-sources.sh: Added.
     14        * gyp/WebCore.gyp:
     15
    1162011-03-04  Pavel Feldman  <pfeldman@chromium.org>
    217
  • trunk/Source/WebCore/DerivedSources.make

    r79861 r80418  
    863863# JS bindings generator
    864864
    865 IDL_INCLUDES = dom fileapi html css page notifications xml svg
     865IDL_INCLUDES = \
     866    $(WebCore)/dom \
     867    $(WebCore)/fileapi \
     868    $(WebCore)/html \
     869    $(WebCore)/css \
     870    $(WebCore)/page \
     871    $(WebCore)/notifications \
     872    $(WebCore)/xml \
     873    $(WebCore)/svg
     874
    866875IDL_COMMON_ARGS = $(IDL_INCLUDES:%=--include %) --write-dependencies --outputDir .
    867876
  • trunk/Source/WebCore/gyp/WebCore.gyp

    r80415 r80418  
    9191      'type': 'none',
    9292      'actions': [{
    93         'action_name': 'generate_derived_sources',
     93        'action_name': 'Generate Derived Sources',
    9494        'inputs': [],
    9595        'outputs': [],
    9696        'action': [
    97           # FIXME: Generate derived sources.
     97          'sh', 'generate-derived-sources.sh',
    9898        ],
    9999      }],
Note: See TracChangeset for help on using the changeset viewer.