Title: [140384] trunk/Source
Revision
140384
Author
[email protected]
Date
2013-01-21 22:13:26 -0800 (Mon, 21 Jan 2013)

Log Message

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

Reviewed by Abhishek Arya.

Source/_javascript_Core:

* _javascript_Core.gyp/_javascript_Core.gyp:

Source/Platform:

* Platform.gyp/Platform.gyp:

Source/WebCore:

No new tests. No code changes.

* WebCore.gyp/WebCore.gyp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (140383 => 140384)


--- trunk/Source/_javascript_Core/ChangeLog	2013-01-22 06:02:03 UTC (rev 140383)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-01-22 06:13:26 UTC (rev 140384)
@@ -1,3 +1,12 @@
+2013-01-21  Justin Schuh  <[email protected]>
+
+        [CHROMIUM] Suppress c4267 build warnings for Win64 targets
+        https://bugs.webkit.org/show_bug.cgi?id=107499
+
+        Reviewed by Abhishek Arya.
+
+        * _javascript_Core.gyp/_javascript_Core.gyp:
+
 2013-01-21  Dirk Schulze  <[email protected]>
 
         Add build flag for Canvas's Path object (disabled by default)

Modified: trunk/Source/_javascript_Core/_javascript_Core.gyp/_javascript_Core.gyp (140383 => 140384)


--- trunk/Source/_javascript_Core/_javascript_Core.gyp/_javascript_Core.gyp	2013-01-22 06:02:03 UTC (rev 140383)
+++ trunk/Source/_javascript_Core/_javascript_Core.gyp/_javascript_Core.gyp	2013-01-22 06:13:26 UTC (rev 140384)
@@ -89,6 +89,12 @@
       'export_dependent_settings': [
         '../../WTF/WTF.gyp/WTF.gyp:wtf',
       ],
+      'conditions': [
+        ['OS=="win"', {
+          # Disable c4267 warnings until we fix size_t to int truncations.
+          'msvs_disabled_warnings': [4267, ],
+        }],
+      ],
     },
   ], # targets
 }

Modified: trunk/Source/Platform/ChangeLog (140383 => 140384)


--- trunk/Source/Platform/ChangeLog	2013-01-22 06:02:03 UTC (rev 140383)
+++ trunk/Source/Platform/ChangeLog	2013-01-22 06:13:26 UTC (rev 140384)
@@ -1,3 +1,12 @@
+2013-01-21  Justin Schuh  <[email protected]>
+
+        [CHROMIUM] Suppress c4267 build warnings for Win64 targets
+        https://bugs.webkit.org/show_bug.cgi?id=107499
+
+        Reviewed by Abhishek Arya.
+
+        * Platform.gyp/Platform.gyp:
+
 2013-01-21  Tommy Widenflycht  <[email protected]>
 
         MediaStream API: Update the RTCPeerConnection states to match the latest specification

Modified: trunk/Source/Platform/Platform.gyp/Platform.gyp (140383 => 140384)


--- trunk/Source/Platform/Platform.gyp/Platform.gyp	2013-01-22 06:02:03 UTC (rev 140383)
+++ trunk/Source/Platform/Platform.gyp/Platform.gyp	2013-01-22 06:13:26 UTC (rev 140384)
@@ -86,6 +86,10 @@
                         }],
                     ],
                 }],
+                ['OS=="win"', {
+                    # Disable c4267 warnings until we fix size_t to int truncations.
+                    'msvs_disabled_warnings': [4267, ],
+                }],
             ],
             'copies': [
                 {

Modified: trunk/Source/WebCore/ChangeLog (140383 => 140384)


--- trunk/Source/WebCore/ChangeLog	2013-01-22 06:02:03 UTC (rev 140383)
+++ trunk/Source/WebCore/ChangeLog	2013-01-22 06:13:26 UTC (rev 140384)
@@ -1,3 +1,14 @@
+2013-01-21  Justin Schuh  <[email protected]>
+
+        [CHROMIUM] Suppress c4267 build warnings for Win64 targets
+        https://bugs.webkit.org/show_bug.cgi?id=107499
+
+        Reviewed by Abhishek Arya.
+
+        No new tests. No code changes.
+
+        * WebCore.gyp/WebCore.gyp:
+
 2013-01-21  Andreas Kling  <[email protected]>
 
         CSSSelector::value() should assert that m_match != Tag.

Modified: trunk/Source/WebCore/WebCore.gyp/WebCore.gyp (140383 => 140384)


--- trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-01-22 06:02:03 UTC (rev 140383)
+++ trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-01-22 06:13:26 UTC (rev 140384)
@@ -1364,7 +1364,8 @@
             'include_dirs+++': ['../dom'],
           },
           # In generated bindings code: 'switch contains default but no case'.
-          'msvs_disabled_warnings': [ 4065 ],
+          # Disable c4267 warnings until we fix size_t to int truncations.
+          'msvs_disabled_warnings': [ 4065, 4267 ],
         }],
         ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_defines', {
           'cflags': [
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to