Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(493)

Unified Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2177373004: Migrated audio_codec_speed_tests target to GN. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@insert_packet_with_timing
Patch Set: Removed comment. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 = [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698