Changeset 140384 in webkit


Ignore:
Timestamp:
Jan 21, 2013 10:13:26 PM (11 years ago)
Author:
jschuh@chromium.org
Message:

[CHROMIUM] Suppress c4267 build warnings for Win64 targets
https://bugs.webkit.org/show_bug.cgi?id=107499

Reviewed by Abhishek Arya.

Source/JavaScriptCore:

Source/Platform:

  • Platform.gyp/Platform.gyp:

Source/WebCore:

No new tests. No code changes.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r140377 r140384  
     12013-01-21  Justin Schuh  <jschuh@chromium.org>
     2
     3        [CHROMIUM] Suppress c4267 build warnings for Win64 targets
     4        https://bugs.webkit.org/show_bug.cgi?id=107499
     5
     6        Reviewed by Abhishek Arya.
     7
     8        * JavaScriptCore.gyp/JavaScriptCore.gyp:
     9
    1102013-01-21  Dirk Schulze  <dschulze@adobe.com>
    211
  • trunk/Source/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp

    r123253 r140384  
    9090        '../../WTF/WTF.gyp/WTF.gyp:wtf',
    9191      ],
     92      'conditions': [
     93        ['OS=="win"', {
     94          # Disable c4267 warnings until we fix size_t to int truncations.
     95          'msvs_disabled_warnings': [4267, ],
     96        }],
     97      ],
    9298    },
    9399  ], # targets
  • trunk/Source/Platform/ChangeLog

    r140310 r140384  
     12013-01-21  Justin Schuh  <jschuh@chromium.org>
     2
     3        [CHROMIUM] Suppress c4267 build warnings for Win64 targets
     4        https://bugs.webkit.org/show_bug.cgi?id=107499
     5
     6        Reviewed by Abhishek Arya.
     7
     8        * Platform.gyp/Platform.gyp:
     9
    1102013-01-21  Tommy Widenflycht  <tommyw@google.com>
    211
  • trunk/Source/Platform/Platform.gyp/Platform.gyp

    r136734 r140384  
    8787                    ],
    8888                }],
     89                ['OS=="win"', {
     90                    # Disable c4267 warnings until we fix size_t to int truncations.
     91                    'msvs_disabled_warnings': [4267, ],
     92                }],
    8993            ],
    9094            'copies': [
  • trunk/Source/WebCore/ChangeLog

    r140383 r140384  
     12013-01-21  Justin Schuh  <jschuh@chromium.org>
     2
     3        [CHROMIUM] Suppress c4267 build warnings for Win64 targets
     4        https://bugs.webkit.org/show_bug.cgi?id=107499
     5
     6        Reviewed by Abhishek Arya.
     7
     8        No new tests. No code changes.
     9
     10        * WebCore.gyp/WebCore.gyp:
     11
    1122013-01-21  Andreas Kling  <akling@apple.com>
    213
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r140265 r140384  
    13651365          },
    13661366          # In generated bindings code: 'switch contains default but no case'.
    1367           'msvs_disabled_warnings': [ 4065 ],
     1367          # Disable c4267 warnings until we fix size_t to int truncations.
     1368          'msvs_disabled_warnings': [ 4065, 4267 ],
    13681369        }],
    13691370        ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_defines', {
Note: See TracChangeset for help on using the changeset viewer.