Add service control related proto build rule.
PiperOrigin-RevId: 295262088
This commit is contained in:
parent
ee4dddf805
commit
5cfa105206
|
|
@ -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",
|
||||
],
|
||||
)
|
||||
Loading…
Reference in New Issue