mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
19 lines
540 B
Python
19 lines
540 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "rpc",
|
|
srcs = [
|
|
"code.pb.go",
|
|
"error_details.pb.go",
|
|
"status.pb.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/gogo/googleapis/google/rpc",
|
|
importpath = "github.com/gogo/googleapis/google/rpc",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/gogo/protobuf/proto",
|
|
"//vendor/github.com/gogo/protobuf/sortkeys",
|
|
"//vendor/github.com/gogo/protobuf/types",
|
|
],
|
|
)
|