Changeset 112611 in webkit


Ignore:
Timestamp:
Mar 29, 2012 5:00:52 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

Unreviewed.

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

    r112600 r112611  
     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        Unreviewed.
     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  Nate Chapin  <japhet@chromium.org>
    215
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r112572 r112611  
    14711471      ],
    14721472      'conditions': [
     1473        ['inside_chromium_build==1', {
     1474            'conditions': [
     1475                ['component=="shared_library"', {
     1476                    'defines': [
     1477                        'WEBKIT_DLL',
     1478                    ],
     1479                }],
     1480            ],
     1481        }],
    14731482        ['use_x11 == 1', {
    14741483          'sources/': [
Note: See TracChangeset for help on using the changeset viewer.