mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-19 13:17:47 +02:00
This makes googleapis forward compatible with Bazel incompatible change https://github.com/bazelbuild/bazel/issues/8922. This CL was created by adding @rules_proto to the WORKSPACE file and then running: find . -name BUILD.bazel | \ while read build; do \ buildifier --lint=fix --warnings=load $build; \ done Since buildifier cannot be told not to reformat the BUILD file, some files are reformatted. PiperOrigin-RevId: 280356106
13 lines
499 B
Text
13 lines
499 B
Text
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
|
|
# This is an API workspace, having public visibility by default makes perfect sense.
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
##############################################################################
|
|
# Common
|
|
##############################################################################
|
|
proto_library(
|
|
name = "common_resources_proto",
|
|
srcs = ["common_resources.proto"],
|
|
deps = ["//google/api:resource_proto"],
|
|
)
|