Migrated GN target :neteq_ilbc_quality_test

Migrated GN target :neteq_ilbc_quality_test from
webrtc/modules/audio_coding/neteq/neteq_tests.gypi

NOTRY=True

BUG=webrtc:6190

Review-Url: https://codereview.webrtc.org/2221193004
Cr-Commit-Position: refs/heads/master@{#13708}
This commit is contained in:
aleloi
2016-08-10 04:55:20 -07:00
committed by Commit bot
parent 6e6e70f55b
commit 0e0be0a2f5
5 changed files with 46 additions and 10 deletions

View File

@ -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",
]
}
}