Changeset 86965 in webkit


Ignore:
Timestamp:
May 20, 2011 10:20:53 AM (13 years ago)
Author:
evan@chromium.org
Message:

2011-05-19 Evan Martin <evan@chromium.org>

Reviewed by Tony Chang.

[chromium] remove <(library) variable
https://bugs.webkit.org/show_bug.cgi?id=61158

This was for a build experiment; we can just use the correct value now.

2011-05-19 Evan Martin <evan@chromium.org>

Reviewed by Tony Chang.

[chromium] remove <(library) variable
https://bugs.webkit.org/show_bug.cgi?id=61158

This was for a build experiment; we can just use the correct value now.

  • glu/glu.gyp:
  • gyp/test/library/src/library.gyp:

2011-05-19 Evan Martin <evan@chromium.org>

Reviewed by Tony Chang.

[chromium] remove <(library) variable
https://bugs.webkit.org/show_bug.cgi?id=61158

This was for a build experiment; we can just use the correct value now.

  • WebCore.gyp/WebCore.gyp:

2011-05-19 Evan Martin <evan@chromium.org>

Reviewed by Tony Chang.

[chromium] remove <(library) variable
https://bugs.webkit.org/show_bug.cgi?id=61158

This was for a build experiment; we can just use the correct value now.

  • WebKit.gyp:
Location:
trunk/Source
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r86960 r86965  
     12011-05-19  Evan Martin  <evan@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        [chromium] remove <(library) variable
     6        https://bugs.webkit.org/show_bug.cgi?id=61158
     7
     8        This was for a build experiment; we can just use the correct value now.
     9
     10        * JavaScriptCore.gyp/JavaScriptCore.gyp:
     11
    1122011-05-20  Oliver Hunt  <oliver@apple.com>
    213
  • trunk/Source/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp

    r83860 r86965  
    9494    {
    9595      'target_name': 'wtf',
    96       'type': '<(library)',
     96      'type': 'static_library',
    9797      'msvs_guid': 'AA8A5A85-592B-4357-BC60-E0E91E026AF6',
    9898      'dependencies': [
     
    191191    {
    192192      'target_name': 'yarr',
    193       'type': '<(library)',
     193      'type': 'static_library',
    194194      'dependencies': [
    195195        'wtf',
  • trunk/Source/ThirdParty/ChangeLog

    r86366 r86965  
     12011-05-19  Evan Martin  <evan@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        [chromium] remove <(library) variable
     6        https://bugs.webkit.org/show_bug.cgi?id=61158
     7
     8        This was for a build experiment; we can just use the correct value now.
     9
     10        * glu/glu.gyp:
     11        * gyp/test/library/src/library.gyp:
     12
    1132011-05-12  Jeff Miller  <jeffm@apple.com>
    214
  • trunk/Source/ThirdParty/glu/glu.gyp

    r83641 r86965  
    22  'targets': [{
    33    'target_name': 'libtess',
    4     'type': '<(library)',
     4    'type': 'static_library',
    55    'include_dirs': [
    66      '../..',
  • trunk/Source/ThirdParty/gyp/test/library/src/library.gyp

    r81709 r86965  
    2121    {
    2222      'target_name': 'lib1',
    23       'type': '<(library)',
     23      'type': 'static_library',
    2424      'sources': [
    2525        'lib1.c',
     
    3535    {
    3636      'target_name': 'lib2',
    37       'type': '<(library)',
     37      'type': 'static_library',
    3838      'sources': [
    3939        'lib2.c',
  • trunk/Source/WebCore/ChangeLog

    r86963 r86965  
     12011-05-19  Evan Martin  <evan@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        [chromium] remove <(library) variable
     6        https://bugs.webkit.org/show_bug.cgi?id=61158
     7
     8        This was for a build experiment; we can just use the correct value now.
     9
     10        * WebCore.gyp/WebCore.gyp:
     11
    1122011-05-20  Pavel Podivilov  <podivilov@chromium.org>
    213
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r86936 r86965  
    875875    {
    876876      'target_name': 'webcore_bindings',
    877       'type': '<(library)',
     877      'type': 'static_library',
    878878      'hard_dependency': 1,
    879879      'dependencies': [
     
    12201220    {
    12211221      'target_name': 'webcore_html',
    1222       'type': '<(library)',
     1222      'type': 'static_library',
    12231223      'dependencies': [
    12241224        'webcore_prerequisites',
     
    12381238    {
    12391239      'target_name': 'webcore_svg',
    1240       'type': '<(library)',
     1240      'type': 'static_library',
    12411241      'dependencies': [
    12421242        'webcore_prerequisites',
     
    12621262    {
    12631263      'target_name': 'webcore_platform',
    1264       'type': '<(library)',
     1264      'type': 'static_library',
    12651265      'dependencies': [
    12661266        'webcore_prerequisites',
     
    14491449    {
    14501450      'target_name': 'webcore_rendering',
    1451       'type': '<(library)',
     1451      'type': 'static_library',
    14521452      'dependencies': [
    14531453        'webcore_prerequisites',
     
    15071507    {
    15081508      'target_name': 'webcore_remaining',
    1509       'type': '<(library)',
     1509      'type': 'static_library',
    15101510      'dependencies': [
    15111511        'webcore_prerequisites',
  • trunk/Source/WebKit/chromium/ChangeLog

    r86943 r86965  
     12011-05-19  Evan Martin  <evan@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        [chromium] remove <(library) variable
     6        https://bugs.webkit.org/show_bug.cgi?id=61158
     7
     8        This was for a build experiment; we can just use the correct value now.
     9
     10        * WebKit.gyp:
     11
    1122011-05-20  Vitaly Repeshko  <vitalyr@chromium.org>
    213
  • trunk/Source/WebKit/chromium/WebKit.gyp

    r86879 r86965  
    4444                # e.g. via build-webkit --chromium
    4545                'chromium_src_dir': '../../WebKit/chromium',
    46                 'webkit_target_type': 'static_library',
    4746            },{
    4847                # WebKit is checked out in src/chromium/third_party/WebKit
    4948                'chromium_src_dir': '../../../../..',
    50                 'webkit_target_type': '<(library)',
    5149            }],
    5250        ],
     
    6765        {
    6866            'target_name': 'webkit',
     67            'type': 'static_library',
    6968            'msvs_guid': '5ECEC9E5-8F23-47B6-93E0-C3B328B3BE65',
    7069            'dependencies': [
     
    651650                        }],
    652651                    ],
    653                 }, {
    654                     'type': '<(webkit_target_type)'
    655652                }],
    656653                ['OS=="linux" or OS=="freebsd"', {
Note: See TracChangeset for help on using the changeset viewer.