Changeset 80865 in webkit


Ignore:
Timestamp:
Mar 11, 2011 11:11:29 AM (13 years ago)
Author:
Dimitri Glazkov
Message:

2011-03-11 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Adam Barth.

Tweak dylib paths and add dtrace header generation action to JavaScriptCore gyp project.
https://bugs.webkit.org/show_bug.cgi?id=56207

  • JavaScriptCore.gypi: Added Tracing.d to the sources.
  • gyp/generate-dtrace-header.sh: Added.
  • gyp/JavaScriptCore.gyp: Updated dylib paths (now the project can see them),

and added DTrace header generating step.

Location:
trunk/Source/JavaScriptCore
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r80751 r80865  
     12011-03-11  Dimitri Glazkov  <dglazkov@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Tweak dylib paths and add dtrace header generation action to JavaScriptCore gyp project.
     6        https://bugs.webkit.org/show_bug.cgi?id=56207
     7
     8        * JavaScriptCore.gypi: Added Tracing.d to the sources.
     9        * gyp/generate-dtrace-header.sh: Added.
     10        * gyp/JavaScriptCore.gyp: Updated dylib paths (now the project can see them),
     11            and added DTrace header generating step.
     12
    1132011-03-10  Oliver Hunt  <oliver@apple.com>
    214
  • trunk/Source/JavaScriptCore/JavaScriptCore.gypi

    r80446 r80865  
    540540            'runtime/TimeoutChecker.cpp',
    541541            'runtime/Tracing.h',
     542            'runtime/Tracing.d',
    542543            'runtime/UString.cpp',
    543544            'runtime/UStringConcatenate.h',
  • trunk/Source/JavaScriptCore/gyp/JavaScriptCore.gyp

    r80418 r80865  
    4545        '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
    4646        '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
    47         'libicucore.dylib',
    48         'libobjc.dylib',
     47        '/usr/lib/libicucore.dylib',
     48        '/usr/lib/libobjc.dylib',
    4949      ],
    5050      'mac_framework_headers': [
     
    134134      'target_name': 'Derived Sources',
    135135      'type': 'none',
    136       'actions': [{
    137         'action_name': 'Generate Derived Sources',
    138         'inputs': [],
    139         'outputs': [],
    140         'action': [
    141           'sh', 'generate-derived-sources.sh',
    142         ],
    143       }],
     136      'actions': [
     137        {
     138          'action_name': 'Generate Derived Sources',
     139          'inputs': [],
     140          'outputs': [],
     141          'action': [
     142            'sh', 'generate-derived-sources.sh',
     143          ],
     144        },
     145        {
     146          'action_name': 'Generate DTrace Header',
     147          'inputs': [],
     148           'outputs': [],
     149           'action': [
     150             'sh', '<(DEPTH)/JavaScriptCore/gyp/generate-dtrace-header.sh'
     151            ]
     152        }
     153      ],
    144154    },
    145155    {
     
    210220        '<@(jsc_files)',
    211221        '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
    212         'libedit.dylib',
     222        '/usr/lib/libedit.dylib',
    213223      ],
    214224    },
Note: See TracChangeset for help on using the changeset viewer.