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

Unified Diff: webrtc/voice_engine/BUILD.gn

Issue 2343813003: Add voe_cmd_test to voice_engine/BUILD.gn (Closed)
Patch Set: Created 4 years, 3 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/voice_engine/voice_engine.gyp » ('j') | webrtc/voice_engine/voice_engine.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/BUILD.gn
diff --git a/webrtc/voice_engine/BUILD.gn b/webrtc/voice_engine/BUILD.gn
index 8e7e29ae2f9869b7f3b9271776fe1a28e9f0ca2e..f41d8ec74728bfb42253b56b69f0c3a4999895f8 100644
--- a/webrtc/voice_engine/BUILD.gn
+++ b/webrtc/voice_engine/BUILD.gn
@@ -236,6 +236,31 @@ if (rtc_include_tests) {
}
}
+ rtc_executable("voe_cmd_test") {
+ testonly = true
+
+ deps = [
+ ":channel_transport",
+ ":voice_engine",
+ "//testing/gtest",
+ "//third_party/gflags",
+ "//webrtc/:rtc_event_log",
kjellander_webrtc 2016/09/15 14:05:31 Write this as //webrtc:rtc_event_log
the sun 2016/09/15 14:15:25 Done.
+ "//webrtc/system_wrappers",
+ "//webrtc/system_wrappers/:system_wrappers_default",
kjellander_webrtc 2016/09/15 14:05:31 Same principle here and below.
the sun 2016/09/15 14:15:25 Done.
+ "//webrtc/test/:test_support",
+ ]
+
+ sources = [
+ "test/cmd_test/voe_cmd_test.cc",
+ ]
+
+ if (is_clang) {
+ # Suppress warnings from Chrome's Clang plugins.
+ # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
+ suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
+ }
+ }
+
if (!is_ios) {
rtc_executable("voe_auto_test") {
testonly = true
« no previous file with comments | « no previous file | webrtc/voice_engine/voice_engine.gyp » ('j') | webrtc/voice_engine/voice_engine.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698