Chromium Code Reviews| Index: webrtc/modules/audio_coding/BUILD.gn |
| diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn |
| index 8a27900edf8bf05db90d64a262a3885f177bcd62..e4ceddb3e0469d7b896a1189d71e0e845c4176a0 100644 |
| --- a/webrtc/modules/audio_coding/BUILD.gn |
| +++ b/webrtc/modules/audio_coding/BUILD.gn |
| @@ -58,6 +58,12 @@ source_set("audio_coding") { |
| ] |
| } |
| + if (is_clang) { |
| + # Suppress warnings from Chrome's Clang plugins. |
| + # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| + configs -= [ "//build/config/clang:find_bad_constructs" ] |
| + } |
| + |
|
terelius
2015/08/14 13:00:44
Do you remember what construct caused the clang er
ivoc
2015/08/14 13:23:13
Well, in the ACM we include rtc_event_log.h, which
|
| deps = [ |
| ":cng", |
| ":g711", |
| @@ -68,6 +74,7 @@ source_set("audio_coding") { |
| ":neteq", |
| ":pcm16b", |
| ":red", |
| + "../..:rtc_event_log", |
| "../..:webrtc_common", |
| "../../common_audio", |
| "../../system_wrappers", |