Changeset 121028 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Jun 22, 2012, 9:20:33 AM (13 years ago)
Author:
[email protected]
Message:

[Chromium] Disable c++0x compatibility warnings in JavaScriptCore.gyp when building for Android
https://bugs.webkit.org/show_bug.cgi?id=88853

Reviewed by Steve Block.

The Android exclusions were necessary to fix a gyp generation error, as
the gcc_version variable wasn't being defined for Android. Remove these
exceptions when Chromium is able to define the gcc_version variable.

Source/JavaScriptCore:

Source/WebCore:

  • WebCore.gyp/WebCore.gyp:

Source/WebKit/chromium:

  • WebKit.gyp:
  • WebKitUnitTests.gyp:

Source/WTF:

  • WTF.gyp/WTF.gyp:

Tools:

  • DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r120989 r121028  
     12012-06-22  Peter Beverloo  <[email protected]>
     2
     3        [Chromium] Disable c++0x compatibility warnings in JavaScriptCore.gyp when building for Android
     4        https://bugs.webkit.org/show_bug.cgi?id=88853
     5
     6        Reviewed by Steve Block.
     7
     8        The Android exclusions were necessary to fix a gyp generation error, as
     9        the gcc_version variable wasn't being defined for Android. Remove these
     10        exceptions when Chromium is able to define the gcc_version variable.
     11
     12        * JavaScriptCore.gyp/JavaScriptCore.gyp:
     13
    1142012-06-21  Filip Pizlo  <[email protected]>
    215
  • trunk/Source/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp

    r119921 r121028  
    4848  },
    4949  'conditions': [
    50     ['os_posix == 1 and OS != "mac" and OS != "android" and gcc_version==46', {
     50    ['os_posix == 1 and OS != "mac" and gcc_version==46', {
    5151      'target_defaults': {
    5252        # Disable warnings about c++0x compatibility, as some names (such as nullptr) conflict
Note: See TracChangeset for help on using the changeset viewer.