-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathBUILD.golang_protobuf
109 lines (101 loc) · 2 KB
/
BUILD.golang_protobuf
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_library(
name = "proto",
srcs = [
"proto/clone.go",
"proto/decode.go",
"proto/encode.go",
"proto/equal.go",
"proto/extensions.go",
"proto/lib.go",
"proto/message_set.go",
"proto/pointer_reflect.go",
"proto/pointer_unsafe.go",
"proto/properties.go",
"proto/text.go",
"proto/text_parser.go",
],
importpath = "github.com/golang/protobuf",
visibility = [
"//visibility:public",
]
)
go_library(
name = "jsonpb",
srcs = [
"jsonpb/jsonpb.go",
],
importpath = "github.com/golang/protobuf",
visibility = [
"//visibility:public",
],
deps = [
":proto"
],
)
go_library(
name = "ptypes/any",
srcs = [
"ptypes/any/any.pb.go",
],
importpath = "github.com/golang/protobuf",
visibility = [
"//visibility:public",
],
deps = [
":proto"
],
)
go_library(
name = "ptypes/timestamp",
srcs = [
"ptypes/timestamp/timestamp.pb.go",
],
importpath = "github.com/golang/protobuf",
visibility = [
"//visibility:public",
],
deps = [
":proto"
],
)
go_library(
name = "ptypes/wrappers",
srcs = [
"ptypes/wrappers/wrappers.pb.go",
],
importpath = "github.com/golang/protobuf",
visibility = [
"//visibility:public",
],
deps = [
":proto"
],
)
go_library(
name = "ptypes/duration",
srcs = [
"ptypes/duration/duration.pb.go",
],
importpath = "github.com/golang/protobuf",
visibility = [
"//visibility:public",
],
deps = [
":proto"
],
)
go_library(
name = "ptypes/struct",
srcs = [
"ptypes/struct/struct.pb.go",
],
importpath = "github.com/golang/protobuf",
visibility = [
"//visibility:public",
],
deps = [
":proto"
],
)