Changeset 81701 in webkit


Ignore:
Timestamp:
Mar 22, 2011 2:28:52 PM (13 years ago)
Author:
eric@webkit.org
Message:

2011-03-22 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add Profiling Configuration to JavaScriptCore gyp build
https://bugs.webkit.org/show_bug.cgi?id=56862

It appears this is identical to Release, but I suspect
there is someone/thing who uses the Profiling target
so we're adding it for completeness.

  • gyp/JavaScriptCore.gyp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r81694 r81701  
     12011-03-22  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Add Profiling Configuration to JavaScriptCore gyp build
     6        https://bugs.webkit.org/show_bug.cgi?id=56862
     7
     8        It appears this is identical to Release, but I suspect
     9        there is someone/thing who uses the Profiling target
     10        so we're adding it for completeness.
     11
     12        * gyp/JavaScriptCore.gyp:
     13
    1142011-03-22  Adam Barth  <abarth@webkit.org>
    215
  • trunk/Source/JavaScriptCore/gyp/JavaScriptCore.gyp

    r81693 r81701  
    88      'xcode_config_file': '<(project_dir)/Configurations/Base.xcconfig',
    99    },
     10    'Profiling': {
     11      'xcode_config_file': '<(project_dir)/Configurations/DebugRelease.xcconfig',
     12      'xcode_settings': {
     13        'STRIP_INSTALLED_PRODUCT': 'NO',
     14      },
     15    },
    1016    'Release': {
    1117      'xcode_config_file': '<(project_dir)/Configurations/DebugRelease.xcconfig',
     
    3036    ],
    3137  },
     38  'target_defaults': {
     39    'configurations': {
     40      'Profiling': {},
     41    },
     42  },
    3243  'targets': [
    3344    {
     
    4253        '<(PRODUCT_DIR)/DerivedSources/JavaScriptCore',
    4354      ],
     55      'configurations': {
     56        'Production': {
     57          'INSTALL_PATH': '$(BUILT_PRODUCTS_DIR)',
     58        },
     59      },
    4460      'sources': [
    4561        '<@(javascriptcore_files)',
Note: See TracChangeset for help on using the changeset viewer.