-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
177 lines (157 loc) · 4.03 KB
/
BUILD.bazel
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
load("@io_grpc_grpc_java//:java_grpc_library.bzl", "java_grpc_library")
proto_library(
name = "helloworld_proto",
srcs = ["src/main/proto/helloworld.proto"],
)
java_proto_library(
name = "helloworld_java_proto",
deps = [":helloworld_proto"],
)
java_grpc_library(
name = "helloworld_java_grpc",
srcs = [":helloworld_proto"],
deps = [":helloworld_java_proto"],
)
proto_library(
name = "hello_streaming_proto",
srcs = [
"src/main/proto/hello_streaming.proto",
],
)
java_proto_library(
name = "hello_streaming_java_proto",
deps = [":hello_streaming_proto"],
)
java_grpc_library(
name = "hello_streaming_java_grpc",
srcs = [":hello_streaming_proto"],
deps = [":hello_streaming_java_proto"],
)
proto_library(
name = "route_guide_proto",
srcs = ["src/main/proto/route_guide.proto"],
)
java_proto_library(
name = "route_guide_java_proto",
deps = [":route_guide_proto"],
)
java_grpc_library(
name = "route_guide_java_grpc",
srcs = [":route_guide_proto"],
deps = [":route_guide_java_proto"],
)
java_library(
name = "examples",
testonly = 1,
srcs = glob(
["src/main/java/**/*.java"],
),
resources = glob(
["src/main/resources/**"],
),
deps = [
":hello_streaming_java_grpc",
":hello_streaming_java_proto",
":helloworld_java_grpc",
":helloworld_java_proto",
":route_guide_java_grpc",
":route_guide_java_proto",
"@com_google_api_grpc_proto_google_common_protos//jar",
"@com_google_code_findbugs_jsr305//jar",
"@com_google_guava_guava//jar",
"@com_google_protobuf//:protobuf_java",
"@com_google_protobuf//:protobuf_java_util",
"@io_grpc_grpc_java//alts",
"@io_grpc_grpc_java//core",
"@io_grpc_grpc_java//netty",
"@io_grpc_grpc_java//protobuf",
"@io_grpc_grpc_java//stub",
"@io_netty_netty_handler//jar",
],
)
java_binary(
name = "hello-world-client",
testonly = 1,
main_class = "io.grpc.examples.helloworld.HelloWorldClient",
runtime_deps = [
":examples",
],
)
java_binary(
name = "hello-world-server",
testonly = 1,
main_class = "io.grpc.examples.helloworld.HelloWorldServer",
runtime_deps = [
":examples",
],
)
java_binary(
name = "hello-world-alts-client",
testonly = 1,
main_class = "io.grpc.examples.alts.HelloWorldAltsClient",
runtime_deps = [
":examples",
"@io_grpc_grpc_java//alts",
"@io_grpc_grpc_java//netty",
],
)
java_binary(
name = "hello-world-alts-server",
testonly = 1,
main_class = "io.grpc.examples.alts.HelloWorldAltsServer",
runtime_deps = [
":examples",
"@io_grpc_grpc_java//alts",
"@io_grpc_grpc_java//netty",
],
)
java_binary(
name = "route-guide-client",
testonly = 1,
main_class = "io.grpc.examples.routeguide.RouteGuideClient",
runtime_deps = [
":examples",
],
)
java_binary(
name = "route-guide-server",
testonly = 1,
main_class = "io.grpc.examples.routeguide.RouteGuideServer",
runtime_deps = [
":examples",
],
)
java_binary(
name = "manual-flow-control-client",
testonly = 1,
main_class = "io.grpc.examples.manualflowcontrol.ManualFlowControlClient",
runtime_deps = [
":examples",
],
)
java_binary(
name = "manual-flow-control-server",
testonly = 1,
main_class = "io.grpc.examples.manualflowcontrol.ManualFlowControlServer",
runtime_deps = [
":examples",
],
)
java_binary(
name = "hello-world-tls-client",
testonly = 1,
main_class = "io.grpc.examples.helloworldtls.HelloWorldClientTls",
runtime_deps = [
":examples",
"@io_netty_netty_tcnative_boringssl_static//jar",
],
)
java_binary(
name = "hello-world-tls-server",
testonly = 1,
main_class = "io.grpc.examples.helloworldtls.HelloWorldServerTls",
runtime_deps = [
":examples",
"@io_netty_netty_tcnative_boringssl_static//jar",
],
)