aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorYuri Wiitala <miu@chromium.org>2019-11-22 15:04:27 -0800
committerCommit Bot <commit-bot@chromium.org>2019-11-22 23:17:56 +0000
commit7d2583a9952b389760fbec7c9eed515bb2270fb4 (patch)
tree6929ab25ae7972e283eb866d04be9c0ef7583815 /BUILD.gn
parentef98b330b71a64ef3a427b93fcfa92a76c06a597 (diff)
downloadopenscreen-7d2583a9952b389760fbec7c9eed515bb2270fb4.tar.gz
Move streaming/cast/* to cast/streaming/* and cast/standalone_receiver/*
Moves the files from streaming/cast to cast/streaming, fixes #includes and header guards, adopts the cast::streaming namespace, and patches BUILD.gn and DEPS files. Change-Id: I77d467a98823f3c55ed38f9a298967e3a42d0549 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1927135 Commit-Queue: Yuri Wiitala <miu@chromium.org> Reviewed-by: Jordan Bayles <jophba@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn12
1 files changed, 9 insertions, 3 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 27694f84..45c89852 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -12,13 +12,13 @@ group("gn_all") {
"cast/common:certificate",
"cast/common:channel",
"cast/sender:channel",
+ "cast/streaming:receiver",
+ "cast/streaming:sender",
"discovery:dnssd",
"discovery:mdns",
"osp",
"osp/msgs",
"platform",
- "streaming/cast:receiver",
- "streaming/cast:sender",
"third_party/abseil",
"third_party/boringssl",
"third_party/jsoncpp",
@@ -51,6 +51,12 @@ group("gn_all") {
"third_party/protobuf:protoc",
"third_party/zlib",
]
+
+ # TODO(crbug.com/openscreen/86): Build for Mac too once the mac buildbot
+ # compiler is upgraded.
+ if (!is_mac) {
+ deps += [ "cast/standalone_receiver:cast_receiver" ]
+ }
}
}
@@ -59,11 +65,11 @@ source_set("openscreen_unittests_all") {
public_deps = [
"cast/common:unittests",
"cast/sender:unittests",
+ "cast/streaming:unittests",
"discovery:unittests",
"osp:unittests",
"osp/msgs:unittests",
"platform:unittests",
- "streaming/cast:unittests",
"third_party/abseil",
"third_party/googletest:gtest_main",
"util:unittests",