mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 17:02:53 +01:00
681817ceae
GitOrigin-RevId: 83514338be1d662518bab9fe5ab6eefef98f229f
35 lines
850 B
Python
35 lines
850 B
Python
load("@com_github_grpc_grpc//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library")
|
|
load("@rules_rust//proto:proto.bzl", "rust_proto_library")
|
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
proto_library(
|
|
name = "meta_api_proto",
|
|
srcs = glob([
|
|
"*.proto",
|
|
]),
|
|
deps = [
|
|
"//nexus/models/proto:models_proto",
|
|
"@com_google_protobuf//:wrappers_proto",
|
|
],
|
|
)
|
|
|
|
py_proto_library(
|
|
name = "meta_api_proto_py",
|
|
deps = [":meta_api_proto"],
|
|
)
|
|
|
|
py_grpc_library(
|
|
name = "meta_api_grpc_py",
|
|
srcs = [":meta_api_proto"],
|
|
deps = [":meta_api_proto_py"],
|
|
)
|
|
|
|
rust_proto_library(
|
|
name = "meta_api_proto_rust",
|
|
rust_deps = ["//rules/rust/cargo:protobuf"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [":meta_api_proto"],
|
|
)
|