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

Unified Diff: webrtc/webrtc_examples.gyp

Issue 2369803002: Ignores SecRandomCopyBytes() warning for GYP build. (Closed)
Patch Set: Ignores SecRandomCopyBytes() warning for GYP build. Created 4 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: webrtc/webrtc_examples.gyp
diff --git a/webrtc/webrtc_examples.gyp b/webrtc/webrtc_examples.gyp
index cea496943757ab923761ad35f45dd20be2dd6214..9a03d534652fb1e25770a99bc9b82a96b73e7d97 100755
--- a/webrtc/webrtc_examples.gyp
+++ b/webrtc/webrtc_examples.gyp
@@ -373,10 +373,7 @@
# https://code.google.com/p/webrtc/issues/detail?id=4695
'WARNING_CFLAGS!': [
'-Wpartial-availability',
- # Hide the warning for SecRandomCopyBytes(), till we update
- # to upstream.
- # https://bugs.chromium.org/p/webrtc/issues/detail?id=6396
- '-Wno-unused-result'],
+ ],
},
}],
],
@@ -390,6 +387,10 @@
'WARNING_CFLAGS': [
'-Wno-deprecated-declarations',
'-Wno-nonnull',
+ # Hide the warning for SecRandomCopyBytes(), till we update
+ # to upstream.
+ # https://bugs.chromium.org/p/webrtc/issues/detail?id=6396
+ '-Wno-unused-result',
],
},
'link_settings': {
« 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