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

Unified Diff: webrtc/test/BUILD.gn

Issue 2438973002: GN: move webrtc/video/ targets from webrtc/BUILD.gn into webrtc/video/BUILD.gn (Closed)
Patch Set: Add missing dependency on modules/video_capture:video_capture_module Created 4 years, 2 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 | « webrtc/BUILD.gn ('k') | webrtc/video/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/BUILD.gn
diff --git a/webrtc/test/BUILD.gn b/webrtc/test/BUILD.gn
index 5a1e71aa9ab22a8c8b61bb32e431ba26aaf956b3..326a3b1e959db2cabe8aafb074dac62ac3fefe1b 100644
--- a/webrtc/test/BUILD.gn
+++ b/webrtc/test/BUILD.gn
@@ -193,6 +193,18 @@ rtc_source_set("test_support_main_threaded_mac") {
]
}
+rtc_source_set("run_test") {
+ testonly = true
+ sources = [
+ "run_test.h",
+ ]
+ if (is_mac) {
+ sources += [ "mac/run_test.mm" ]
+ } else {
+ sources += [ "run_test.cc" ]
+ }
+}
+
test_support_unittests_resources = [
"//resources/foreman_cif_short.yuv",
"//resources/video_coding/frame-ethernet-ii.pcap",
@@ -322,6 +334,7 @@ rtc_source_set("test_common") {
"../base:rtc_base_approved",
"../call",
"../modules/media_file",
+ "../modules/video_capture:video_capture_module",
kjellander_webrtc 2016/10/24 06:49:54 vcm_capturer.cc needs this. Before consumers of th
"../video",
"//testing/gmock",
"//testing/gtest",
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/video/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698