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

Unified Diff: media/media.gyp

Issue 10537037: Fix gcc 4.7 building problems - cont' (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 8c5a3b75fbee30ff5dd981359d422619ff9eb11d..b6c6e65ded9c969ddf4b25119353a588c209d5a3 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -10,6 +10,11 @@
# Override to dynamically link the cras (ChromeOS audio) library.
'use_cras%': 0,
},
+ 'target_defaults': {
+ # Disable narrowing-conversion-in-initialization-list warnings.
+ 'cflags+': ['-Wno-narrowing'],
+ 'cflags_cc+': ['-Wno-narrowing'],
Ami GONE FROM CHROMIUM 2012/06/06 21:34:09 I don't understand why you need this given the INT
Han 2012/06/06 22:18:23 Yup, right. Reverted this file.
+ },
'targets': [
{
'target_name': 'media',
@@ -617,7 +622,7 @@
'include_dirs': [
'..',
],
- 'sources': [
+ 'sources': [
Ami GONE FROM CHROMIUM 2012/06/06 21:34:09 nit: remove new space
Han 2012/06/06 22:18:23 Yup, right. Reverted this file.
'base/simd/convert_rgb_to_yuv_c.cc',
'base/simd/convert_rgb_to_yuv.h',
'base/simd/convert_yuv_to_rgb_c.cc',
« media/base/simd/convert_rgb_to_yuv_sse2.cc ('K') | « media/base/simd/convert_rgb_to_yuv_sse2.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698