mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-22 21:21:31 +00:00
24 lines
834 B
Python
24 lines
834 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "iampb",
|
||
|
srcs = [
|
||
|
"iam_policy.pb.go",
|
||
|
"options.pb.go",
|
||
|
"policy.pb.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/cloud.google.com/go/iam/apiv1/iampb",
|
||
|
importpath = "cloud.google.com/go/iam/apiv1/iampb",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"@org_golang_google_genproto//googleapis/type/expr",
|
||
|
"@org_golang_google_genproto_googleapis_api//annotations",
|
||
|
"@org_golang_google_grpc//:go_default_library",
|
||
|
"@org_golang_google_grpc//codes",
|
||
|
"@org_golang_google_grpc//status",
|
||
|
"@org_golang_google_protobuf//reflect/protoreflect",
|
||
|
"@org_golang_google_protobuf//runtime/protoimpl",
|
||
|
"@org_golang_google_protobuf//types/known/fieldmaskpb",
|
||
|
],
|
||
|
)
|