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..7992b2fe623911b1993702f57e43d0a8ef25e5da 100644 |
--- a/webrtc/modules/audio_coding/BUILD.gn |
+++ b/webrtc/modules/audio_coding/BUILD.gn |
@@ -1057,6 +1057,44 @@ 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_win) { |
phoglund
2016/07/28 07:31:20
Remove this.
|
+ # cflags = [ |
+ # # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
+ # "/wd4373", # virtual function override. |
+ # ] |
+ # } |
+ |
+ 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 = [ |