From cbf8daad50ce2889c58f488b9b4d1702118caebc Mon Sep 17 00:00:00 2001 From: Jordan Bayles Date: Tue, 19 Nov 2019 13:06:55 -0800 Subject: 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 Commit-Queue: Jordan Bayles --- cast/sender/BUILD.gn | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cast/sender') 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", ] } -- cgit v1.2.3