Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Unified Diff: media/media.gyp

Issue 12094047: Disable size_t to int conversion data loss warnings in media win64 builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrap comment within 80 columns Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 470f580b2762054737a4d2f6c35373cd0081b97d..179ed4b38fe8c3304cdc56eb41e118848f18c1fd 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -669,6 +669,13 @@
},
},
},
+ # TODO(wolenetz): crbug.com/171009 fix size_t to int truncations
+ # in win64.
+ 'conditions': [
+ ['target_arch == "x64"', {
+ 'msvs_disabled_warnings': [ 4267, ],
+ }],
+ ],
}],
['proprietary_codecs==1 or branding=="Chrome"', {
'sources': [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698