| Index: webrtc/call/BUILD.gn
|
| diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn
|
| index bd2b30e57003e9d4a59927f3980208c4da807de3..97643d1238620f5dcada539fa4972d4049a62a71 100644
|
| --- a/webrtc/call/BUILD.gn
|
| +++ b/webrtc/call/BUILD.gn
|
| @@ -16,9 +16,8 @@ rtc_static_library("call") {
|
| "transport_adapter.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" ]
|
| }
|
|
|
| @@ -49,9 +48,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" ]
|
| }
|
| }
|
|
|