Changeset 135528 in webkit


Ignore:
Timestamp:
Nov 22, 2012, 9:30:59 AM (13 years ago)
Author:
danakj@chromium.org
Message:

[chromium] Add OS!="ios" to guard for gcc_version in WebKit.gyp
https://bugs.webkit.org/show_bug.cgi?id=103007

Reviewed by Adam Barth.

This matches the guards used in chromium's chrome/chrome_browser.gypi.

  • WebKit.gyp:
Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r135516 r135528  
     12012-11-22  Dana Jansens  <danakj@chromium.org>
     2
     3        [chromium] Add OS!="ios" to guard for gcc_version in WebKit.gyp
     4        https://bugs.webkit.org/show_bug.cgi?id=103007
     5
     6        Reviewed by Adam Barth.
     7
     8        This matches the guards used in chromium's chrome/chrome_browser.gypi.
     9
     10        * WebKit.gyp:
     11
    1122012-11-22  Stephen Chenney  <schenney@chromium.org>
    213
  • trunk/Source/WebKit/chromium/WebKit.gyp

    r135506 r135528  
    10791079    ], # targets
    10801080    'conditions': [
    1081         ['os_posix==1 and OS!="mac" and gcc_version>=46', {
     1081        ['os_posix==1 and OS!="mac" and OS!="ios" and gcc_version>=46', {
    10821082            'target_defaults': {
    10831083                # Disable warnings about c++0x compatibility, as some names (such
Note: See TracChangeset for help on using the changeset viewer.