Changeset 112639 in webkit


Ignore:
Timestamp:
Mar 29, 2012 8:02:04 PM (12 years ago)
Author:
abarth@webkit.org
Message:

[Chromium] Attempt to fix the component build
https://bugs.webkit.org/show_bug.cgi?id=82676

Reviewed by Dirk Pranke.

Now that we're implementing some of the WEBKIT_EXPORT symbols in
WebCore/platform/chromium/support, we need to tell the build system
that we want to actually export these symbols.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r112634 r112639  
     12012-03-29  Adam Barth  <abarth@webkit.org>
     2
     3        [Chromium] Attempt to fix the component build
     4        https://bugs.webkit.org/show_bug.cgi?id=82676
     5
     6        Reviewed by Dirk Pranke.
     7
     8        Now that we're implementing some of the WEBKIT_EXPORT symbols in
     9        WebCore/platform/chromium/support, we need to tell the build system
     10        that we want to actually export these symbols.
     11
     12        * WebCore.gyp/WebCore.gyp:
     13
    1142012-03-29  Adam Barth  <abarth@webkit.org>
    215
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r112634 r112639  
    14661466      ],
    14671467      'conditions': [
     1468        ['inside_chromium_build==1', {
     1469            'conditions': [
     1470                ['component=="shared_library"', {
     1471                    'defines': [
     1472                        'WEBKIT_DLL',
     1473                    ],
     1474                }],
     1475            ],
     1476        }],
    14681477        ['use_x11 == 1', {
    14691478          'sources/': [
Note: See TracChangeset for help on using the changeset viewer.