blob: 5a3c4de0afbf6f8a39543d408f5296e3b76eeacb [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
Craig Tiller05fbe3c2017-02-17 13:27:21 -080031bind(
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080032 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
Craig Tiller19f3ea22017-02-17 15:17:05 -080041bind(
42 name = "benchmark",
43 actual = "@submodule_benchmark//:benchmark",
Craig Tilleraf115812017-03-09 15:09:34 -080044)
45
46bind(
David Garcia Quintase9932d42017-02-17 16:44:30 -080047 name = "gflags",
48 actual = "@com_github_gflags_gflags//:gflags",
Craig Tiller19f3ea22017-02-17 15:17:05 -080049)
50
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020051new_local_repository(
52 name = "submodule_boringssl",
Nicolas "Pixel" Noblef9445d02017-01-04 22:46:47 +010053 build_file = "third_party/boringssl-with-bazel/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080054 path = "third_party/boringssl-with-bazel",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020055)
56
57new_local_repository(
58 name = "submodule_zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020059 build_file = "third_party/zlib.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080060 path = "third_party/zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020061)
62
63new_local_repository(
64 name = "submodule_protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020065 build_file = "third_party/protobuf/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080066 path = "third_party/protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020067)
Craig Tiller05fbe3c2017-02-17 13:27:21 -080068
69new_local_repository(
70 name = "submodule_gtest",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080071 build_file = "third_party/gtest.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080072 path = "third_party/googletest",
73)
74
75local_repository(
76 name = "com_github_gflags_gflags",
77 path = "third_party/gflags",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080078)
Craig Tiller19f3ea22017-02-17 15:17:05 -080079
Makarand Dharmapurikar003092a2017-02-21 14:08:01 -080080git_repository(
81 name = "mongoose_repo",
Makarand Dharmapurikar4be62582017-02-22 14:32:41 -080082 commit = "4120a97945b41195a6223a600dae8e3b19bed19e",
Makarand Dharmapurikar003092a2017-02-21 14:08:01 -080083 remote = "https://github.com/makdharma/mongoose.git"
84)
Makarand Dharmapurikara0649dd2017-03-27 09:18:21 -070085
Craig Tiller19f3ea22017-02-17 15:17:05 -080086new_local_repository(
87 name = "submodule_benchmark",
88 path = "third_party/benchmark",
89 build_file = "third_party/benchmark.BUILD",
90)
Nicolas "Pixel" Noble8e0684b2017-03-27 18:50:04 +020091
92new_local_repository(
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080093 name = "submodule_cares",
94 path = "third_party/cares",
95 build_file = "third_party/cares/cares.BUILD",
96)