Added GN target for webrtc_opus_fec_test.

BUG=webrtc:6191
NOTRY=True
NOPRESUBMIT=True

Review-Url: https://codereview.webrtc.org/2268213002
Cr-Commit-Position: refs/heads/master@{#13893}
This commit is contained in:
ivoc
2016-08-24 06:11:18 -07:00
committed by Commit bot
parent 7a0ff2f700
commit 2c670dbf13
3 changed files with 26 additions and 0 deletions

View File

@ -1600,4 +1600,28 @@ if (rtc_include_tests) {
"../..:webrtc_common",
]
}
executable("webrtc_opus_fec_test") {
testonly = true
sources = [
"codecs/opus/opus_fec_test.cc",
]
deps = [
":webrtc_opus",
"../../base:rtc_base",
"../../common_audio",
"../../test:test_support",
"../../test:test_support_main",
"//build/config/sanitizers:deps",
"//testing/gtest",
]
if (is_clang) {
# Suppress warnings from Chrome's Clang plugins.
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
configs -= [ "//build/config/clang:find_bad_constructs" ]
}
}
}