mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-13 01:21:23 +00:00
20 lines
691 B
Python
20 lines
691 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "validate",
|
||
|
srcs = [
|
||
|
"validate.h",
|
||
|
"validate.pb.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/envoyproxy/protoc-gen-validate/validate",
|
||
|
importpath = "github.com/envoyproxy/protoc-gen-validate/validate",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"@org_golang_google_protobuf//reflect/protoreflect",
|
||
|
"@org_golang_google_protobuf//runtime/protoimpl",
|
||
|
"@org_golang_google_protobuf//types/descriptorpb",
|
||
|
"@org_golang_google_protobuf//types/known/durationpb",
|
||
|
"@org_golang_google_protobuf//types/known/timestamppb",
|
||
|
],
|
||
|
)
|