forked from bufbuild/protoc-gen-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
28 lines (26 loc) · 915 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "module",
srcs = [
"checker.go",
"validate.go",
],
importpath = "github.com/envoyproxy/protoc-gen-validate/module",
visibility = ["//visibility:public"],
deps = [
"//templates",
"//templates/java",
"//validate",
"@com_github_lyft_protoc_gen_star//:protoc-gen-star",
"@com_github_lyft_protoc_gen_star//lang/go",
"@org_golang_google_protobuf//proto",
"@org_golang_google_protobuf//types/known/durationpb",
"@org_golang_google_protobuf//types/known/timestamppb",
],
)
alias(
name = "go_default_library",
actual = ":module",
deprecation = "Use :module instead of :go_default_library. Details about the new naming convention: https://github.com/bazelbuild/bazel-gazelle/pull/863",
visibility = ["//visibility:public"],
)