-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathBUILD.bazel
50 lines (45 loc) · 1.22 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
load("@rules_proto//proto:defs.bzl", "proto_library")
load("@io_grpc_grpc_java//:java_grpc_library.bzl", "java_grpc_library")
proto_library(
name = "helloworld_proto",
srcs = ["src/main/proto/helloworld/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"],
)
java_library(
name = "hostname_greeter",
testonly = 1,
srcs = [
"src/main/java/io/grpc/examples/hostname/HostnameGreeter.java",
],
deps = [
":helloworld_java_grpc",
":helloworld_java_proto",
"@io_grpc_grpc_java//stub",
],
)
java_binary(
name = "hostname-server",
testonly = 1,
srcs = [
"src/main/java/io/grpc/examples/hostname/HostnameServer.java",
],
main_class = "io.grpc.examples.hostname.HostnameServer",
runtime_deps = [
"@io_grpc_grpc_java//netty",
],
deps = [
":hostname_greeter",
"@io_grpc_grpc_java//api",
"@io_grpc_grpc_java//services:health",
"@io_grpc_grpc_java//services:reflection",
"@io_grpc_grpc_proto//:health_java_proto",
],
)