-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathBUILD.bazel
More file actions
40 lines (38 loc) · 1.2 KB
/
BUILD.bazel
File metadata and controls
40 lines (38 loc) · 1.2 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "protobuf",
srcs = ["protobuf.go"],
importpath = "github.com/stackb/rules_proto/language/protobuf",
visibility = ["//visibility:public"],
deps = [
"//pkg/language/protobuf",
"//pkg/plugin/bufbuild",
"//pkg/plugin/builtin",
"//pkg/plugin/gogo/protobuf",
"//pkg/plugin/golang/protobuf",
"//pkg/plugin/grpc/grpc",
"//pkg/plugin/grpc/grpcgo",
"//pkg/plugin/grpc/grpcjava",
"//pkg/plugin/grpc/grpcnode",
"//pkg/plugin/grpc/grpcweb",
"//pkg/plugin/grpcecosystem/grpcgateway",
"//pkg/plugin/scalapb/scalapb",
"//pkg/plugin/scalapb/zio_grpc",
"//pkg/plugin/stackb/grpc_js",
"//pkg/plugin/stephenh/ts-proto",
"//pkg/rule/rules_cc",
"//pkg/rule/rules_closure",
"//pkg/rule/rules_go",
"//pkg/rule/rules_java",
"//pkg/rule/rules_nodejs",
"//pkg/rule/rules_python",
"//pkg/rule/rules_scala",
"@bazel_gazelle//language",
],
)
filegroup(
name = "all_files",
testonly = True,
srcs = ["BUILD.bazel"] + glob(["*.go"]),
visibility = ["//:__pkg__"],
)