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..d5cb55e89dfc35ff1d483ddfebd951037c06a8f1 100644 |
--- a/webrtc/modules/audio_coding/BUILD.gn |
+++ b/webrtc/modules/audio_coding/BUILD.gn |
@@ -1377,4 +1377,28 @@ if (rtc_include_tests) { |
configs -= [ "//build/config/clang:find_bad_constructs" ] |
} |
} |
+ |
+ executable("neteq_ilbc_quality_test") { |
+ testonly = true |
+ |
+ sources = [ |
+ "neteq/test/neteq_ilbc_quality_test.cc", |
+ ] |
+ |
+ deps = [ |
+ ":ilbc", |
+ ":neteq", |
+ ":neteq_test_support", |
+ "../../system_wrappers:system_wrappers_default", |
+ "../../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" ] |
+ } |
+ } |
} |