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

Unified Diff: third_party/opus/opus_nacl.gyp

Issue 570443002: Suppress opus warning about optimization in opus_nacl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Stop suppressing warnings as errors Created 6 years, 3 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: third_party/opus/opus_nacl.gyp
diff --git a/third_party/opus/opus_nacl.gyp b/third_party/opus/opus_nacl.gyp
index a93a817b7bf3afce20526cea095aa7f469ed2039..c4287c2758732cdd399e048d5e48252db4bd38ec 100644
--- a/third_party/opus/opus_nacl.gyp
+++ b/third_party/opus/opus_nacl.gyp
@@ -3,9 +3,6 @@
# found in the LICENSE file.
{
- 'variables': {
- 'werror': '',
- },
'includes': [
'../../native_client/build/untrusted.gypi',
],
@@ -40,6 +37,11 @@
'<@(opus_common_sources)',
'<@(opus_float_sources)',
],
+ # Suppress a warning given by opus_decoder.c that tells us
+ # optimizations are turned off.
+ 'cflags': [
+ '-Wno-#pragma-messages',
+ ],
}, # end of target 'opus_nacl'
],
}
« 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