aboutsummaryrefslogtreecommitdiff
path: root/cast
diff options
context:
space:
mode:
authorbtolsch <btolsch@chromium.org>2021-06-28 16:55:28 -0700
committerOpenscreen LUCI CQ <openscreen-scoped@luci-project-accounts.iam.gserviceaccount.com>2021-06-29 01:04:30 +0000
commit70ebaff5cc52fca8a7be4aadbac10f3b838ef053 (patch)
tree1861e884975e8554c2455e93c823d29a2c731eb2 /cast
parent8ac28e195414974bf38a249270e4e842790c82f7 (diff)
downloadopenscreen-70ebaff5cc52fca8a7be4aadbac10f3b838ef053.tar.gz
Update Cast Core API deps
This change updates the deps for the build rules to match the includes of the protos. Bug: b/172295002 Change-Id: I4cd0bef9c95e19b4650bdbf9becdb68bf737d6aa Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/2992819 Reviewed-by: Brandon Tolsch <btolsch@chromium.org> Commit-Queue: Brandon Tolsch <btolsch@chromium.org>
Diffstat (limited to 'cast')
-rw-r--r--cast/cast_core/api/BUILD.gn12
1 files changed, 7 insertions, 5 deletions
diff --git a/cast/cast_core/api/BUILD.gn b/cast/cast_core/api/BUILD.gn
index c4a22d68..dd9ff283 100644
--- a/cast/cast_core/api/BUILD.gn
+++ b/cast/cast_core/api/BUILD.gn
@@ -107,14 +107,12 @@ cast_core_proto_library("service_info_proto") {
cast_core_grpc_library("cast_core_service_proto") {
sources = [ "core/cast_core_service.proto" ]
- deps = [
- ":runtime_metadata_proto",
- ":service_info_proto",
- ]
+ deps = [ ":runtime_metadata_proto" ]
}
cast_core_grpc_library("platform_service_proto") {
sources = [ "platform/platform_service.proto" ]
+ deps = [ ":service_info_proto" ]
}
cast_core_grpc_library("cast_audio_channel_service_proto") {
@@ -123,7 +121,11 @@ cast_core_grpc_library("cast_audio_channel_service_proto") {
cast_core_grpc_library("runtime_service_proto") {
sources = [ "runtime/runtime_service.proto" ]
- deps = [ ":service_info_proto" ]
+ deps = [
+ ":application_config_proto",
+ ":service_info_proto",
+ ":url_rewrite_proto",
+ ]
}
cast_core_proto_library("cast_message_proto") {