aboutsummaryrefslogtreecommitdiff
path: root/cast/sender
diff options
context:
space:
mode:
authorJordan Bayles <jophba@chromium.org>2019-11-19 13:06:55 -0800
committerCommit Bot <commit-bot@chromium.org>2019-11-20 18:56:58 +0000
commitcbf8daad50ce2889c58f488b9b4d1702118caebc (patch)
tree6cd790681b353fb6766889762a0ac5d24a4e4215 /cast/sender
parentcbdea4b075719dd473c1c9934ea1a53a5032edb3 (diff)
downloadopenscreen-cbf8daad50ce2889c58f488b9b4d1702118caebc.tar.gz
Move protos to their own BUILD.gn files
Currently, one of the Windows bots is trying to build platform/ and util/, because it is building all targets that gn knows about, including ones that are not listed as dependencies, not necessary for any top level targets, and do not compile on that operating system. This patch moves protos to their own BUILD.gn files, in an attempt to keep the Windows bot from discovering unbuildable targets. Change-Id: I8936812017d8b2fcf82fa922a68a93c645093f2f Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1925024 Reviewed-by: mark a. foltz <mfoltz@chromium.org> Commit-Queue: Jordan Bayles <jophba@chromium.org>
Diffstat (limited to 'cast/sender')
-rw-r--r--cast/sender/BUILD.gn8
1 files changed, 4 insertions, 4 deletions
diff --git a/cast/sender/BUILD.gn b/cast/sender/BUILD.gn
index 05932260..86d67ade 100644
--- a/cast/sender/BUILD.gn
+++ b/cast/sender/BUILD.gn
@@ -13,8 +13,8 @@ source_set("channel") {
]
deps = [
- "../common:certificate_proto",
- "../common:channel_proto",
+ "../common/certificate/proto:certificate_proto",
+ "../common/channel/proto:channel_proto",
]
public_deps = [
@@ -32,7 +32,7 @@ source_set("unittests") {
":channel",
"../../platform",
"../../third_party/googletest:gtest",
- "../common:certificate_proto",
- "../common:certificate_unittest_proto",
+ "../common/certificate/proto:certificate_proto",
+ "../common/certificate/proto:certificate_unittest_proto",
]
}