aboutsummaryrefslogtreecommitdiff
path: root/examples/bzlmod/py_proto_library/example.com/another_proto/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bzlmod/py_proto_library/example.com/another_proto/BUILD.bazel')
-rw-r--r--examples/bzlmod/py_proto_library/example.com/another_proto/BUILD.bazel16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/bzlmod/py_proto_library/example.com/another_proto/BUILD.bazel b/examples/bzlmod/py_proto_library/example.com/another_proto/BUILD.bazel
deleted file mode 100644
index 806fcb9..0000000
--- a/examples/bzlmod/py_proto_library/example.com/another_proto/BUILD.bazel
+++ /dev/null
@@ -1,16 +0,0 @@
-load("@rules_proto//proto:defs.bzl", "proto_library")
-load("@rules_python//python:proto.bzl", "py_proto_library")
-
-py_proto_library(
- name = "message_proto_py_pb2",
- visibility = ["//visibility:public"],
- deps = [":message_proto"],
-)
-
-proto_library(
- name = "message_proto",
- srcs = ["message.proto"],
- # https://bazel.build/reference/be/protocol-buffer#proto_library.strip_import_prefix
- strip_import_prefix = "/py_proto_library/example.com",
- deps = ["//py_proto_library/example.com/proto:pricetag_proto"],
-)