| # Copyright 2021 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| import("//third_party/cast_core/public/src/proto/proto.gni") |
| cast_core_proto_library("duration_proto") { |
| sources = [ |
| "duration.proto", |
| ] |
| proto_in_dir = "//third_party/cast_core/public/src" |
| } |
| |
| cast_core_proto_library("application_config_proto") { |
| sources = [ |
| "application_config.proto", |
| ] |
| deps = [ |
| ":value_proto", |
| ] |
| proto_in_dir = "//third_party/cast_core/public/src" |
| } |
| |
| cast_core_proto_library("application_state_proto") { |
| sources = [ |
| "application_state.proto", |
| ] |
| proto_in_dir = "//third_party/cast_core/public/src" |
| } |
| |
| cast_core_proto_library("runtime_metadata_proto") { |
| sources = [ |
| "runtime_metadata.proto", |
| ] |
| deps = [ |
| ":duration_proto", |
| ] |
| proto_in_dir = "//third_party/cast_core/public/src" |
| } |
| |
| cast_core_proto_library("service_info_proto") { |
| sources = [ |
| "service_info.proto", |
| ] |
| proto_in_dir = "//third_party/cast_core/public/src" |
| } |
| |
| cast_core_proto_library("value_proto") { |
| sources = [ |
| "value.proto", |
| ] |
| proto_in_dir = "//third_party/cast_core/public/src" |
| } |