Changeset 65076 in webkit


Ignore:
Timestamp:
Aug 10, 2010 10:34:07 AM (14 years ago)
Author:
jamesr@google.com
Message:

2010-08-10 James Robinson <jamesr@chromium.org>

Reviewed by Dimitri Glazkov.

[chromium] Feature defines are out of sync between features.gypi and downstream feature_overrides.gypi
https://bugs.webkit.org/show_bug.cgi?id=43756

This synchronizes the feature defines to what's currently downstream (at r55468).
The difference between the build.webkit.org bots and the chromium bots has
caused strange compilation failures lately.

  • features.gypi:
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r65069 r65076  
     12010-08-10  James Robinson  <jamesr@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        [chromium] Feature defines are out of sync between features.gypi and downstream feature_overrides.gypi
     6        https://bugs.webkit.org/show_bug.cgi?id=43756
     7
     8        This synchronizes the feature defines to what's currently downstream (at r55468).
     9        The difference between the build.webkit.org bots and the chromium bots has
     10        caused strange compilation failures lately.
     11
     12        * features.gypi:
     13
    1142010-08-10  Yury Semikhatsky  <yurys@chromium.org>
    215
  • trunk/WebKit/chromium/features.gypi

    r64763 r65076  
    3939      # chromium build, overrides this list with its own values. See
    4040      # features_override.gypi inline documentation for more details.
    41       'feature_defines%': [
     41      'feature_defines': [
    4242        'ENABLE_3D_CANVAS=1',
    4343        'ENABLE_BLOB=1',
     44        'ENABLE_BLOB_SLICE=1',
    4445        'ENABLE_CHANNEL_MESSAGING=1',
    4546        'ENABLE_DASHBOARD_SUPPORT=0',
     
    5051        'ENABLE_DOM_STORAGE=1',
    5152        'ENABLE_EVENTSOURCE=1',
    52         'ENABLE_FILE_WRITER=1',
    53         'ENABLE_FILE_SYSTEM=1',
     53        'ENABLE_FILE_READER=1',
    5454        'ENABLE_FILTERS=1',
    5555        'ENABLE_GEOLOCATION=1',
    5656        'ENABLE_ICONDATABASE=0',
    57         'ENABLE_IMAGE_RESIZER=0',
    5857        'ENABLE_INDEXED_DATABASE=1',
    5958        'ENABLE_INPUT_SPEECH=1',
    6059        'ENABLE_JAVASCRIPT_DEBUGGER=1',
    6160        'ENABLE_JSC_MULTIPLE_THREADS=0',
     61        'ENABLE_LINK_PREFETCH=1',
    6262        'ENABLE_METER_TAG=1',
    6363        'ENABLE_NOTIFICATIONS=1',
     
    7676        'ENABLE_SVG_USE=1',
    7777        'ENABLE_TOUCH_EVENTS=1',
     78        'ENABLE_V8_SCRIPT_DEBUG_SERVER=1',
    7879        'ENABLE_VIDEO=1',
    7980        'ENABLE_WEB_SOCKETS=1',
    8081        'ENABLE_WEB_TIMING=1',
    8182        'ENABLE_WORKERS=1',
    82         'ENABLE_XHTMLMP=0',
    8383        'ENABLE_XPATH=1',
    8484        'ENABLE_XSLT=1',
    85         'WTF_USE_ACCELERATED_COMPOSITING=0',
    8685      ],
    87      
     86
     87      'conditions': [
     88        ['OS=="win" or OS=="linux"', {
     89          'feature_defines': [
     90           'WTF_USE_ACCELERATED_COMPOSITING=1',
     91           'ENABLE_3D_RENDERING=1',
     92          ],
     93        }],
     94      ],
     95
    8896      'use_accelerated_compositing%': 0,
    8997      'enable_svg%': 1,
Note: See TracChangeset for help on using the changeset viewer.