-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathBUILD
35 lines (30 loc) · 960 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
29
30
31
32
33
34
35
package(default_visibility = ["//visibility:public"])
load("//protobuf:rules.bzl", "proto_language")
proto_language(
name = "gogo",
go_prefix = "//:go_prefix",
pb_file_extensions = [".pb.go"],
pb_plugin = "@com_github_gogo_protobuf//protoc-gen-gogo",
pb_plugin_implements_grpc = True,
)
proto_language(
name = "gogofast",
go_prefix = "//:go_prefix",
pb_file_extensions = [".pb.go"],
pb_plugin = "@com_github_gogo_protobuf//protoc-gen-gogofast",
pb_plugin_implements_grpc = True,
)
proto_language(
name = "gogofaster",
go_prefix = "//:go_prefix",
pb_file_extensions = [".pb.go"],
pb_plugin = "@com_github_gogo_protobuf//protoc-gen-gogofaster",
pb_plugin_implements_grpc = True,
)
proto_language(
name = "gogoslick",
go_prefix = "//:go_prefix",
pb_file_extensions = [".pb.go"],
pb_plugin = "@com_github_gogo_protobuf//protoc-gen-gogoslick",
pb_plugin_implements_grpc = True,
)