aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUILD.gn12
1 files changed, 8 insertions, 4 deletions
diff --git a/BUILD.gn b/BUILD.gn
index ea5b2658..bb698dc7 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -85,7 +85,6 @@ source_set("openscreen_unittests_all") {
"osp:unittests",
"osp/msgs:unittests",
"platform:unittests",
- "test:test_main",
"third_party/abseil",
"util:unittests",
]
@@ -107,7 +106,10 @@ source_set("openscreen_unittests_all") {
if (!build_with_chromium) {
executable("openscreen_unittests") {
testonly = true
- deps = [ ":openscreen_unittests_all" ]
+ deps = [
+ ":openscreen_unittests_all",
+ "test:test_main",
+ ]
}
}
@@ -119,12 +121,14 @@ if (!build_with_chromium && is_posix) {
"cast/standalone_receiver:e2e_tests",
"cast/test:e2e_tests",
"cast/test:make_crl_tests($host_toolchain)",
- "test:test_main",
]
}
executable("e2e_tests") {
testonly = true
- deps = [ ":e2e_tests_all" ]
+ deps = [
+ ":e2e_tests_all",
+ "test:test_main",
+ ]
}
}