blob: 9a4a6cde6935126f9acc04231464b586a75ff384 [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(
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020017 name = "protobuf",
18 actual = "@submodule_protobuf//:protobuf",
19)
20
21bind(
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020022 name = "protobuf_clib",
23 actual = "@submodule_protobuf//:protoc_lib",
24)
25
26bind(
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020027 name = "protocol_compiler",
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020028 actual = "@submodule_protobuf//:protoc",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020029)
30
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080031bind(
32 name = "cares",
33 actual = "@submodule_cares//:ares",
34)
35
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020036new_local_repository(
37 name = "submodule_boringssl",
Nicolas "Pixel" Noblef9445d02017-01-04 22:46:47 +010038 path = "third_party/boringssl-with-bazel",
39 build_file = "third_party/boringssl-with-bazel/BUILD",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020040)
41
42new_local_repository(
43 name = "submodule_zlib",
44 path = "third_party/zlib",
45 build_file = "third_party/zlib.BUILD",
46)
47
48new_local_repository(
49 name = "submodule_protobuf",
50 path = "third_party/protobuf",
51 build_file = "third_party/protobuf/BUILD",
52)
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080053
54new_local_repository(
55 name = "submodule_cares",
56 path = "third_party/cares",
57 build_file = "third_party/cares/cares.BUILD",
58)