hyperboria/nexus/pylon/proto/BUILD.bazel
the-superpirate 7389f85ef2 - Send Pylon to golden
-  Move fancy naming to Hub
-  Adopt translations
-  Fix long authors list in bot
-  Support CJK in scitech
-  Fixed pylon bug with decoding improper unicode ch...

GitOrigin-RevId: 74f73c44f749a71cb65dd5ddd3416f32a83d329f
2021-01-08 23:09:19 +03:00

20 lines
420 B
Python

load("@com_github_grpc_grpc//bazel:python_rules.bzl", "py_proto_library")
load("@rules_proto//proto:defs.bzl", "proto_library")
package(default_visibility = ["//visibility:public"])
proto_library(
name = "pylon_proto",
srcs = glob([
"*.proto",
]),
deps = [
"@com_google_protobuf//:wrappers_proto",
],
)
py_proto_library(
name = "pylon_proto_py",
deps = [":pylon_proto"],
)