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

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

Issue 2221193004: Migrated GN target :neteq_ilbc_quality_test (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase on top of master. 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 | « no previous file | webrtc/modules/audio_coding/neteq/neteq.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 3e292e31ad887f4462fc00ebcd279d5f4afe882b..5938d6cb65e1c0f596916f47acdd984d17229814 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -1167,6 +1167,7 @@ if (rtc_include_tests) {
"neteq/tools/audio_checksum.h",
"neteq/tools/audio_loop.cc",
"neteq/tools/audio_loop.h",
+ "neteq/tools/audio_sink.cc",
"neteq/tools/audio_sink.h",
"neteq/tools/constant_pcm_packet_source.cc",
"neteq/tools/constant_pcm_packet_source.h",
@@ -1388,17 +1389,12 @@ if (rtc_include_tests) {
deps = [
":neteq",
":neteq_test_support",
+ ":neteq_unittest_tools",
":webrtc_opus",
"../../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" ]
- }
}
executable("neteq_speed_test") {
@@ -1428,4 +1424,23 @@ if (rtc_include_tests) {
"../../system_wrappers:system_wrappers_default",
]
}
+
+ executable("neteq_ilbc_quality_test") {
+ testonly = true
+
+ sources = [
+ "neteq/test/neteq_ilbc_quality_test.cc",
+ ]
+
+ deps = [
+ ":ilbc",
+ ":neteq",
+ ":neteq_test_support",
+ ":neteq_unittest_tools",
+ "../../system_wrappers:system_wrappers_default",
+ "../../test:test_support_main",
+ "//testing/gtest",
+ "//third_party/gflags",
+ ]
+ }
}
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/neteq.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698