mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 00:42:53 +01:00
9ce67ec590
- feat(idm): Rename IDM-2 to IDM - feat(idm): Open IDM 3 internal commit(s) GitOrigin-RevId: e302e9b5cda18cca1adc4ae8a3d906714d222106
28 lines
618 B
Python
28 lines
618 B
Python
load("@com_github_grpc_grpc//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library")
|
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
proto_library(
|
|
name = "hub_proto",
|
|
srcs = glob([
|
|
"*.proto",
|
|
]),
|
|
deps = [
|
|
"//idm/api/proto:idm_proto",
|
|
"//nexus/models/proto:models_proto",
|
|
"@com_google_protobuf//:wrappers_proto",
|
|
],
|
|
)
|
|
|
|
py_proto_library(
|
|
name = "hub_proto_py",
|
|
deps = [":hub_proto"],
|
|
)
|
|
|
|
py_grpc_library(
|
|
name = "hub_grpc_py",
|
|
srcs = [":hub_proto"],
|
|
deps = [":hub_proto_py"],
|
|
)
|