| Index: webrtc/audio/BUILD.gn
|
| diff --git a/webrtc/audio/BUILD.gn b/webrtc/audio/BUILD.gn
|
| index 14607cdd739b01f5f288f80727d7b7d836c01940..5cba616c531e1c6f46c368d129486369b5619975 100644
|
| --- a/webrtc/audio/BUILD.gn
|
| +++ b/webrtc/audio/BUILD.gn
|
| @@ -20,9 +20,8 @@ rtc_static_library("audio") {
|
| "scoped_voe_interface.h",
|
| ]
|
|
|
| - if (is_clang) {
|
| - # Suppress warnings from Chrome's Clang plugins.
|
| - # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
| + if (!build_with_chromium && is_clang) {
|
| + # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
| suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
| }
|
|
|
| @@ -46,9 +45,8 @@ if (rtc_include_tests) {
|
| "//testing/gmock",
|
| "//testing/gtest",
|
| ]
|
| - if (is_clang) {
|
| - # Suppress warnings from the Chromium Clang plugin.
|
| - # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
| + if (!build_with_chromium && is_clang) {
|
| + # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
| suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
| }
|
| }
|
|
|