blob: 6a1b70e1528a163b1e8008cfbee041064dc001a5 [file] [log] [blame]
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +02001bind(
2 name = "nanopb",
3 actual = "//third_party/nanopb",
4)
5
6bind(
7 name = "libssl",
8 actual = "@submodule_boringssl//:ssl",
9)
10
11bind(
12 name = "zlib",
13 actual = "@submodule_zlib//:z",
14)
15
16bind(
17 name = "protobuf_clib",
18 actual = "@submodule_protobuf//:protoc_lib",
19)
20
21bind(
22 name = "protobuf_compiler",
23 actual = "@submodule_protobuf//:protoc_lib",
24)
25
26new_local_repository(
27 name = "submodule_boringssl",
28 path = "third_party/boringssl",
29 build_file = "third_party/boringssl/BUILD",
30)
31
32new_local_repository(
33 name = "submodule_zlib",
34 path = "third_party/zlib",
35 build_file = "third_party/zlib.BUILD",
36)
37
38new_local_repository(
39 name = "submodule_protobuf",
40 path = "third_party/protobuf",
41 build_file = "third_party/protobuf/BUILD",
42)