From 5cfa105206e77670369e4b2225597386aba32985 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Fri, 14 Feb 2020 17:32:28 -0800 Subject: [PATCH] Add service control related proto build rule. PiperOrigin-RevId: 295262088 --- google/api/servicecontrol/v1/BUILD.bazel | 43 ++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 google/api/servicecontrol/v1/BUILD.bazel diff --git a/google/api/servicecontrol/v1/BUILD.bazel b/google/api/servicecontrol/v1/BUILD.bazel new file mode 100644 index 00000000..c71ab050 --- /dev/null +++ b/google/api/servicecontrol/v1/BUILD.bazel @@ -0,0 +1,43 @@ +# This file was automatically generated by BuildFileGenerator + +# This is an API workspace, having public visibility by default makes perfect sense. +package(default_visibility = ["//visibility:public"]) + +############################################################################## +# Common +############################################################################## +load("@rules_proto//proto:defs.bzl", "proto_library") + +proto_library( + name = "servicecontrol_proto", + srcs = [ + "check_error.proto", + "distribution.proto", + "log_entry.proto", + "metric_value.proto", + "operation.proto", + "quota_controller.proto", + "service_controller.proto", + ], + deps = [ + "//google/api:annotations_proto", + "//google/logging/type:log_severity_proto", + "//google/rpc:status_proto", + "//google/type:money_proto", + "@com_google_protobuf//:any_proto", + "@com_google_protobuf//:struct_proto", + "@com_google_protobuf//:timestamp_proto", + ], +) + +############################################################################## +# C++ +############################################################################## +load("@com_google_googleapis_imports//:imports.bzl", "cc_proto_library") + +cc_proto_library( + name = "servicecontrol_cc_proto", + deps = [ + ":servicecontrol_proto", + ], +)