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.
29 lines
869 B
29 lines
869 B
2 years ago
|
load("@bazel_gazelle//:def.bzl", "gazelle")
|
||
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||
|
|
||
|
# gazelle:prefix github.com/envoyproxy/protoc-gen-validate
|
||
|
# gazelle:exclude tests
|
||
|
# gazelle:exclude example-workspace
|
||
|
# gazelle:exclude validate/validate.h
|
||
|
# gazelle:go_naming_convention import_alias
|
||
|
gazelle(name = "gazelle")
|
||
|
|
||
|
go_binary(
|
||
|
name = "protoc-gen-validate",
|
||
|
embed = [":protoc-gen-validate_lib"],
|
||
|
importpath = "github.com/envoyproxy/protoc-gen-validate",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
go_library(
|
||
|
name = "protoc-gen-validate_lib",
|
||
|
srcs = ["main.go"],
|
||
|
importpath = "github.com/envoyproxy/protoc-gen-validate",
|
||
|
visibility = ["//visibility:private"],
|
||
|
deps = [
|
||
|
"//module",
|
||
|
"@com_github_lyft_protoc_gen_star//:protoc-gen-star",
|
||
|
"@com_github_lyft_protoc_gen_star//lang/go",
|
||
|
],
|
||
|
)
|