aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorJordan Bayles <jophba@chromium.org>2020-04-27 12:02:29 -0700
committerCommit Bot <commit-bot@chromium.org>2020-05-21 17:23:31 +0000
commit3275593b9d8b99d653ead174d749aa8fcb332b95 (patch)
tree6ce01f2cf9096b2f60d77ae43b128561ee9d588a /BUILD.gn
parent9b28b9695df98d310c2271eaa65d20cc6d224203 (diff)
downloadopenscreen-3275593b9d8b99d653ead174d749aa8fcb332b95.tar.gz
Add basic functional tests for the CastAgent
This patch adds some rudimentary test coverage to ensure that the CastAgent in the standalone receiver implementation is not entirely broken. Bug: b/153079471 Change-Id: Iff26badce61fbded172ff27c490440651909b0c3 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/2169345 Reviewed-by: Brandon Tolsch <btolsch@chromium.org> Commit-Queue: Jordan Bayles <jophba@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn9
1 files changed, 3 insertions, 6 deletions
diff --git a/BUILD.gn b/BUILD.gn
index cbd318c9..ea5b2658 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -107,9 +107,7 @@ source_set("openscreen_unittests_all") {
if (!build_with_chromium) {
executable("openscreen_unittests") {
testonly = true
- deps = [
- ":openscreen_unittests_all",
- ]
+ deps = [ ":openscreen_unittests_all" ]
}
}
@@ -118,6 +116,7 @@ if (!build_with_chromium && is_posix) {
testonly = true
public_deps = [
"cast/common:discovery_e2e_test",
+ "cast/standalone_receiver:e2e_tests",
"cast/test:e2e_tests",
"cast/test:make_crl_tests($host_toolchain)",
"test:test_main",
@@ -126,8 +125,6 @@ if (!build_with_chromium && is_posix) {
executable("e2e_tests") {
testonly = true
- deps = [
- ":e2e_tests_all",
- ]
+ deps = [ ":e2e_tests_all" ]
}
}