mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-15 02:01:25 +00:00
20 lines
648 B
Python
20 lines
648 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "extensions",
|
|
srcs = [
|
|
"extension.pb.go",
|
|
"extensions.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/google/gnostic-models/extensions",
|
|
importpath = "github.com/google/gnostic-models/extensions",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_golang_protobuf//proto",
|
|
"@com_github_golang_protobuf//ptypes",
|
|
"@org_golang_google_protobuf//reflect/protoreflect",
|
|
"@org_golang_google_protobuf//runtime/protoimpl",
|
|
"@org_golang_google_protobuf//types/known/anypb",
|
|
],
|
|
)
|