Chromium Code Reviews| Index: webrtc/examples/BUILD.gn |
| diff --git a/webrtc/examples/BUILD.gn b/webrtc/examples/BUILD.gn |
| index e61f15f838e618f45b0a46cda4e5f45f634d7265..c1eb8a9acc687157cb5a3cdbda8db70eaec2cc69 100644 |
| --- a/webrtc/examples/BUILD.gn |
| +++ b/webrtc/examples/BUILD.gn |
| @@ -325,7 +325,13 @@ if (is_ios || (is_mac && target_cpu != "x86")) { |
| ] |
| # Enabled for cflags_objc in build/config/compiler/BUILD.gn. |
|
kjellander_webrtc
2016/09/21 10:16:07
Move this comment down since it only applies to li
henrika_webrtc
2016/09/21 10:48:36
Done.
|
| - cflags_objc = [ "-Wno-objc-missing-property-synthesis" ] |
| + cflags_objc = [ |
| + "-Wno-objc-missing-property-synthesis", |
| + |
| + # Hide the warning for SecRandomCopyBytes(), till we update to upstream. |
|
kjellander_webrtc
2016/09/21 10:16:07
till -> until
henrika_webrtc
2016/09/21 10:48:36
Done.
|
| + # https://bugs.chromium.org/p/webrtc/issues/detail?id=6396 |
| + "-Wno-unused-result", |
| + ] |
| if (is_mac) { |
| cflags += [ "-Wno-partial-availability" ] |