Title: [140910] trunk/Source
Revision
140910
Author
[email protected]
Date
2013-01-26 02:01:32 -0800 (Sat, 26 Jan 2013)

Log Message

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

Source/WebCore:

No new tests. No behavior change.

Reviewed by Abhishek Arya.

* WebCore.gyp/WebCore.gyp:

Source/WTF:

Reviewed by Abhishek Arya.

* WTF.gyp/WTF.gyp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (140909 => 140910)


--- trunk/Source/WTF/ChangeLog	2013-01-26 09:51:38 UTC (rev 140909)
+++ trunk/Source/WTF/ChangeLog	2013-01-26 10:01:32 UTC (rev 140910)
@@ -1,3 +1,12 @@
+2013-01-26  Justin Schuh  <[email protected]>
+
+        [CHROMIUM] Suppress more c4267 build warnings for Win64 targets
+        https://bugs.webkit.org/show_bug.cgi?id=107993
+
+        Reviewed by Abhishek Arya.
+
+        * WTF.gyp/WTF.gyp:
+
 2013-01-25  Eric Seidel  <[email protected]>
 
         Support 4 and 5 argument bound static functions

Modified: trunk/Source/WTF/WTF.gyp/WTF.gyp (140909 => 140910)


--- trunk/Source/WTF/WTF.gyp/WTF.gyp	2013-01-26 09:51:38 UTC (rev 140909)
+++ trunk/Source/WTF/WTF.gyp/WTF.gyp	2013-01-26 10:01:32 UTC (rev 140910)
@@ -142,6 +142,8 @@
           # Don't complain about using "this" in an initializer list
           # (e.g. in StringImpl.h).
           4355,
+          # Disable c4267 warnings until we fix size_t to int truncations.
+          4267,
         ],
       },
       'export_dependent_settings': [

Modified: trunk/Source/WebCore/ChangeLog (140909 => 140910)


--- trunk/Source/WebCore/ChangeLog	2013-01-26 09:51:38 UTC (rev 140909)
+++ trunk/Source/WebCore/ChangeLog	2013-01-26 10:01:32 UTC (rev 140910)
@@ -1,3 +1,14 @@
+2013-01-26  Justin Schuh  <[email protected]>
+
+        [CHROMIUM] Suppress more c4267 build warnings for Win64 targets
+        https://bugs.webkit.org/show_bug.cgi?id=107993
+
+        No new tests. No behavior change.
+
+        Reviewed by Abhishek Arya.
+
+        * WebCore.gyp/WebCore.gyp:
+
 2013-01-24  Patrick Gansterer  <[email protected]>
 
         Build fix for USE(JSC) && !ENABLE(WORKERS) after r136686.

Modified: trunk/Source/WebCore/WebCore.gyp/WebCore.gyp (140909 => 140910)


--- trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-01-26 09:51:38 UTC (rev 140909)
+++ trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-01-26 10:01:32 UTC (rev 140910)
@@ -1609,6 +1609,8 @@
 
         ['exclude', 'AllInOne\\.cpp$'],
       ],
+      # Disable c4267 warnings until we fix size_t to int truncations.
+      'msvs_disabled_warnings': [ 4267, ],
     },
     {
       'target_name': 'webcore_html',
@@ -1649,6 +1651,8 @@
       'dependencies': [
         'webcore_prerequisites',
       ],
+      # Disable c4267 warnings until we fix size_t to int truncations.
+      'msvs_disabled_warnings': [ 4267, 4334 ],
       # This is needed for mac because of webkit_system_interface. It'd be nice
       # if this hard dependency could be split off the rest.
       'hard_dependency': 1,
@@ -2170,6 +2174,8 @@
           }
         }],
       ],
+      # Disable c4267 warnings until we fix size_t to int truncations.
+      'msvs_disabled_warnings': [ 4267, 4334, ],
     },
     {
       'target_name': 'webcore',
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to