aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/examples/proto/gostyle/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'tests/legacy/examples/proto/gostyle/BUILD.bazel')
-rw-r--r--tests/legacy/examples/proto/gostyle/BUILD.bazel25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/legacy/examples/proto/gostyle/BUILD.bazel b/tests/legacy/examples/proto/gostyle/BUILD.bazel
new file mode 100644
index 00000000..1b7d5ff3
--- /dev/null
+++ b/tests/legacy/examples/proto/gostyle/BUILD.bazel
@@ -0,0 +1,25 @@
+load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
+load("@rules_proto//proto:defs.bzl", "proto_library")
+
+genrule(
+ name = "copy",
+ srcs = ["gostyle.proto"],
+ outs = ["gostyle.gen.proto"],
+ cmd = "sed -e 's/ano.proto/any.proto/' $< > $@",
+)
+
+proto_library(
+ name = "gostyle_proto",
+ srcs = [":copy"],
+ visibility = ["//visibility:public"],
+ deps = [
+ "@com_google_protobuf//:any_proto",
+ ],
+)
+
+go_proto_library(
+ name = "gostyle_go_proto",
+ importpath = "github.com/bazelbuild/rules_go/examples/proto/gostyle",
+ proto = ":gostyle_proto",
+ visibility = ["//visibility:public"],
+)