blob: 54d27f06a9e10d302343d2f1b0cea1196e8535d7 [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
Yuchen Zeng2c977082017-02-27 13:35:41 -080036bind(
Craig Tiller05fbe3c2017-02-17 13:27:21 -080037 name = "gtest",
38 actual = "@submodule_gtest//:gtest",
39)
40
David Garcia Quintase9932d42017-02-17 16:44:30 -080041bind(
42 name = "gflags",
43 actual = "@com_github_gflags_gflags//:gflags",
44)
45
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020046new_local_repository(
47 name = "submodule_boringssl",
Nicolas "Pixel" Noblef9445d02017-01-04 22:46:47 +010048 build_file = "third_party/boringssl-with-bazel/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080049 path = "third_party/boringssl-with-bazel",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020050)
51
52new_local_repository(
53 name = "submodule_zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020054 build_file = "third_party/zlib.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080055 path = "third_party/zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020056)
57
58new_local_repository(
59 name = "submodule_protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020060 build_file = "third_party/protobuf/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080061 path = "third_party/protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020062)
Craig Tiller05fbe3c2017-02-17 13:27:21 -080063
64new_local_repository(
65 name = "submodule_gtest",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080066 build_file = "third_party/gtest.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080067 path = "third_party/googletest",
68)
69
70local_repository(
71 name = "com_github_gflags_gflags",
72 path = "third_party/gflags",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020073)
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080074
75new_local_repository(
76 name = "submodule_cares",
77 path = "third_party/cares",
78 build_file = "third_party/cares/cares.BUILD",
79)