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 2268213002: Added GN target for webrtc_opus_fec_test. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 | no next file » | 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 96dbd5b040f6a070f032611a4b8748de0e78dda2..b754a071ca9ec22e1c99eafdbf28334451f963d8 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -1539,4 +1539,25 @@ if (rtc_include_tests) {
]
}
}
+
+ executable("webrtc_opus_fec_test") {
+ testonly = true
+
+ sources = [
+ "codecs/opus/opus_fec_test.cc",
+ ]
+
+ deps = [
+ ":webrtc_opus",
+ "../../common_audio",
+ "../../test:test_support_main",
+ "//testing/gtest",
kjellander_webrtc 2016/08/23 08:54:45 Please add "//build/config/sanitizers:deps", to de
ivoc 2016/08/23 10:34:36 Done.
+ ]
+
+ 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 | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698