This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
forked from stackb/rules_proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
70 lines (58 loc) · 1.84 KB
/
Makefile
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
rulegen:
bazel build //tools/rulegen && \
bazel-bin/tools/rulegen/linux_amd64_stripped/rulegen \
--ref=`git rev-parse HEAD`
# A collection of targets that build routeguide clients
clients:
bazel build \
//cpp/example/routeguide:client \
//go/example/routeguide/client \
//java/example/routeguide:client \
//python/example/routeguide:client \
//scala/example/routeguide:client \
# A collection of targets that build routeguide servers
servers:
bazel build \
//cpp/example/routeguide:server \
//go/example/routeguide/server \
//java/example/routeguide:server \
//python/example/routeguide:server
//scala/example/routeguide:server \
# A collection of test targets
tests:
bazel test \
//closure/example/routeguide/... \
//github.com/stackb/grpc.js/example/routeguide/... \
//cpp/example/routeguide/... \
//java/example/routeguide/... \
//go/example/routeguide/... \
pending_clients:
bazel build \
//android/example/routeguide:client \
//dart/example/routeguide:client \
//closure/example/routeguide/client \
//node/example/routeguide:client \
//ruby/example/routeguide:client \
//github.com/grpc/grpc-web/example/routeguide/closure:bundle \
//github.com/stackb/grpc.js/example/routeguide/client:bundle \
//rust/example/routeguide:client
pending_servers:
bazel build \
//dart/example/routeguide:server \
//node/example/routeguide:server \
//ruby/example/routeguide:server \
//rust/example/routeguide:server
# grpc-web closure test seems to crash phantomjs. Todo move to headless-chrome
# for rules_closure.
closure_test:
bazel test \
//github.com/grpc/grpc-web/example/routeguide/...
csharp:
bazel build \
//csharp/example/routeguide:server \
//csharp/example/routeguide:client
rust:
bazel build \
//csharp/example/routeguide:server \
//csharp/example/routeguide:client
all: clients servers tests