You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
354 B
13 lines
354 B
2 years ago
|
load("@io_bazel_rules_go//proto:compiler.bzl", "go_proto_compiler")
|
||
|
|
||
|
licenses(["notice"]) # Apache 2
|
||
|
|
||
|
go_proto_compiler(
|
||
|
name = "pgv_plugin_go",
|
||
|
options = ["lang=go"],
|
||
|
plugin = "@com_envoyproxy_protoc_gen_validate//:protoc-gen-validate",
|
||
|
suffix = ".pb.validate.go",
|
||
|
valid_archive = False,
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|