mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 08:22:53 +01:00
7389f85ef2
- 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
20 lines
420 B
Python
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"],
|
|
)
|