forked from googleapis/googleapis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
73 lines (61 loc) · 1.34 KB
/
WORKSPACE
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
# nanopb
bind(
name = "nanopb",
actual = "//third_party/nanopb",
)
# Boringssl
bind(
name = "libssl",
actual = "@submodule_boringssl//:ssl",
)
new_local_repository(
name = "submodule_boringssl",
build_file = "third_party/boringssl-with-bazel/BUILD",
path = "third_party/boringssl-with-bazel",
)
# Zlib
bind(
name = "zlib",
actual = "@submodule_zlib//:z",
)
local_repository(
name = "submodule_zlib",
path = "third_party/zlib",
)
# Protobuf
bind(
name = "protobuf",
actual = "@submodule_protobuf//:protobuf",
)
bind(
name = "protobuf_clib",
actual = "@submodule_protobuf//:protoc_lib",
)
bind(
name = "protocol_compiler",
actual = "@submodule_protobuf//:protoc",
)
new_local_repository(
name = "submodule_protobuf",
build_file = "third_party/protobuf/BUILD",
path = "third_party/protobuf",
)
# grpc
bind(
name = "grpc++",
actual = "@submodule_grpc//:grpc++",
)
bind(
name = "grpc++_codegen_proto",
actual = "@submodule_grpc//:grpc++_codegen_proto",
)
bind(
name = "grpc_cpp_plugin",
actual = "@submodule_grpc//:grpc_cpp_plugin",
)
git_repository(
name = "submodule_grpc",
remote = "https://github.com/grpc/grpc",
# TODO(makdharma): replace with version when bazel file fix is released
commit = "eb064ec7b81b60c5e1eb47d6124d0c05056b3097",
)