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

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

Issue 2270403002: Migrated ILBC and ISAC test targets for GN. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@real_master
Patch Set: Reorder. Created 4 years, 4 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 | « .gn ('k') | webrtc/modules/audio_coding/codecs/isac/isac_test.gypi » ('j') | 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 89183476498cd25169e2f0134bc8b4c78a7793b7..2f70fbf1179639679d181b01d9a48f49bd736655 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -541,6 +541,8 @@ source_set("isac") {
":audio_decoder_interface",
":audio_encoder_interface",
":isac_common",
+ "../..:webrtc_common",
+ "../../base:rtc_base_approved",
"../../common_audio",
]
}
@@ -1603,6 +1605,70 @@ if (rtc_include_tests) {
]
}
+ executable("isac_api_test") {
+ testonly = true
+
+ sources = [
+ "codecs/isac/main/test/ReleaseTest-API/ReleaseTest-API.cc",
+ "codecs/isac/main/util/utility.c",
+ ]
+
+ configs += [ "../..:common_config" ]
+ public_configs = [ "../..:common_inherited_config" ]
+
+ deps = [
+ ":isac",
+ "../../base:rtc_base_approved",
+ "//build/config/sanitizers:deps",
+ ]
+
+ include_dirs = [
+ "codecs/isac/main/include",
+ "codecs/isac/main/test",
+ "codecs/isac/main/util",
+ ]
+ }
+
+ executable("isac_switch_samprate_test") {
+ testonly = true
+
+ sources = [
+ "codecs/isac/main/test/SwitchingSampRate/SwitchingSampRate.cc",
+ "codecs/isac/main/util/utility.c",
+ ]
+
+ configs += [ "../..:common_config" ]
+ public_configs = [ "../..:common_inherited_config" ]
+
+ deps = [
+ ":isac",
+ "//build/config/sanitizers:deps",
+ ]
+
+ include_dirs = [
+ "codecs/isac/main/include",
+ "codecs/isac/main/test",
+ "codecs/isac/main/util",
+ "../../common_audio/signal_processing/include",
+ ]
+ }
+
+ executable("ilbc_test") {
+ testonly = true
+
+ sources = [
+ "codecs/ilbc/test/iLBC_test.c",
+ ]
+
+ configs += [ "../..:common_config" ]
+ public_configs = [ "../..:common_inherited_config" ]
+
+ deps = [
+ ":ilbc",
+ "//build/config/sanitizers:deps",
+ ]
+ }
+
executable("webrtc_opus_fec_test") {
testonly = true
« no previous file with comments | « .gn ('k') | webrtc/modules/audio_coding/codecs/isac/isac_test.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698