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 7779af5fb91914173199000a6ae088b784a0fdaf..dcd4222dbfa13da7aa1d7093ee27f355dd1a9683 100644 |
| --- a/webrtc/modules/audio_coding/BUILD.gn |
| +++ b/webrtc/modules/audio_coding/BUILD.gn |
| @@ -1377,4 +1377,27 @@ if (rtc_include_tests) { |
| configs -= [ "//build/config/clang:find_bad_constructs" ] |
| } |
| } |
| + |
| + executable("neteq_opus_quality_test") { |
| + testonly = true |
| + |
| + sources = [ |
| + "neteq/test/neteq_opus_quality_test.cc", |
|
kjellander_webrtc
2016/08/09 21:18:07
I guess it's not as easy as just fixing the Chromi
|
| + ] |
| + |
| + deps = [ |
| + ":neteq", |
| + ":neteq_test_support", |
| + ":webrtc_opus", |
| + "../../test:test_support_main", |
| + "//testing/gtest", |
| + "//third_party/gflags", |
| + ] |
| + |
| + if (is_clang) { |
| + # Suppress warnings from the Chromium Clang plugins |
| + # (bugs.webrtc.org/163). |
| + configs -= [ "//build/config/clang:find_bad_constructs" ] |
| + } |
| + } |
| } |