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

Unified Diff: libyuv_test.gyp

Issue 1611123004: Disable sometimes-uninitialized Clang warning for iOS (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 4 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: libyuv_test.gyp
diff --git a/libyuv_test.gyp b/libyuv_test.gyp
index 5358ffd7653a996e9378176b78dafa7620c3c169..201c96bee9942f7aaa26f697618eac4dc1ff05d2 100644
--- a/libyuv_test.gyp
+++ b/libyuv_test.gyp
@@ -76,7 +76,15 @@
'xcode_settings': {
'DEBUGGING_SYMBOLS': 'YES',
'DEBUG_INFORMATION_FORMAT' : 'dwarf-with-dsym',
+ # Work around compile issue with isosim.mm, see
+ # https://code.google.com/p/libyuv/issues/detail?id=548 for details.
+ 'WARNING_CFLAGS': [
+ '-Wno-sometimes-uninitialized',
+ ],
},
+ 'cflags': [
+ '-Wno-sometimes-uninitialized',
+ ],
}],
[ 'OS != "ios" and libyuv_disable_jpeg != 1', {
'defines': [
« 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