| Index: webrtc/modules/audio_coding/BUILD.gn
|
| diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn
|
| index ea0905c61d7ad52ff4872db57f40d879f22c141f..96c1ea981983f0e26a34040b15fae38c4dcbc628 100644
|
| --- a/webrtc/modules/audio_coding/BUILD.gn
|
| +++ b/webrtc/modules/audio_coding/BUILD.gn
|
| @@ -1057,6 +1057,37 @@ if (rtc_include_tests) {
|
| }
|
| }
|
|
|
| + test("audio_codec_speed_tests") {
|
| + testonly = true
|
| + defines = []
|
| + deps = []
|
| + sources = [
|
| + "codecs/isac/fix/test/isac_speed_test.cc",
|
| + "codecs/opus/opus_speed_test.cc",
|
| + "codecs/tools/audio_codec_speed_test.cc",
|
| + "codecs/tools/audio_codec_speed_test.h",
|
| + ]
|
| +
|
| + if (is_clang) {
|
| + # Suppress warnings from the Chromium Clang plugins
|
| + # (bugs.webrtc.org/163).
|
| + configs -= [ "//build/config/clang:find_bad_constructs" ]
|
| + }
|
| +
|
| + if (is_android) {
|
| + deps += [ "//testing/android/native_test:native_test_native_code" ]
|
| + }
|
| +
|
| + deps += [
|
| + ":isac_fix",
|
| + ":webrtc_opus",
|
| + "../../system_wrappers:system_wrappers_default",
|
| + "../../test:test_support_main",
|
| + "../audio_processing/",
|
| + "//testing/gtest",
|
| + ]
|
| + }
|
| +
|
| source_set("neteq_test_support") {
|
| testonly = true
|
| sources = [
|
|
|