mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-30 14:00:57 +00:00
16 lines
538 B
Text
16 lines
538 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "iam",
|
|
srcs = ["iam.go"],
|
|
importmap = "peridot.resf.org/vendor/cloud.google.com/go/iam",
|
|
importpath = "cloud.google.com/go/iam",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/googleapis/gax-go/v2:gax-go",
|
|
"@go_googleapis//google/iam/v1:iam_go_proto",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
"@org_golang_google_grpc//codes",
|
|
"@org_golang_google_grpc//metadata",
|
|
],
|
|
)
|