mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
35 lines
979 B
Python
35 lines
979 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
||
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
||
|
|
||
|
proto_library(
|
||
|
name = "commonpb_proto",
|
||
|
srcs = [
|
||
|
"common.proto",
|
||
|
"healthcheck.proto",
|
||
|
],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["@go_googleapis//google/api:annotations_proto"],
|
||
|
)
|
||
|
|
||
|
go_proto_library(
|
||
|
name = "commonpb_go_proto",
|
||
|
compilers = [
|
||
|
"//:go_apiv2",
|
||
|
"//:go_grpc",
|
||
|
"//:go_validate",
|
||
|
"@com_github_grpc_ecosystem_grpc_gateway_v2//protoc-gen-grpc-gateway:go_gen_grpc_gateway",
|
||
|
],
|
||
|
importpath = "peridot.resf.org/common",
|
||
|
proto = ":commonpb_proto",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["@go_googleapis//google/api:annotations_go_proto"],
|
||
|
)
|
||
|
|
||
|
go_library(
|
||
|
name = "common",
|
||
|
embed = [":commonpb_go_proto"],
|
||
|
importpath = "peridot.resf.org/common",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|