mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
16 lines
490 B
Python
16 lines
490 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "descriptor",
|
|
srcs = [
|
|
"descriptor.go",
|
|
"descriptor.pb.go",
|
|
"descriptor_gostring.gen.go",
|
|
"helper.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor",
|
|
importpath = "github.com/gogo/protobuf/protoc-gen-gogo/descriptor",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/github.com/gogo/protobuf/proto"],
|
|
)
|