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

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

Issue 2268213002: Added GN target for webrtc_opus_fec_test. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added rtc_base dependency to gyp file. 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/opus/opus.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 ce8ab6f73b3e751428b22292cee461edb98b8f6f..945ebd24c35630317cbe0b43b97dbf8d8d8cc933 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -1599,4 +1599,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" ]
+ }
+ }
}
« no previous file with comments | « .gn ('k') | webrtc/modules/audio_coding/codecs/opus/opus.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698