blob: 5ba82f3127b3eca2be4205e3574905234d7f6d55 [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",
Alexander Polcynf5521c32017-04-26 14:18:39 -070018 actual = "@submodule_protobuf//:protobuf",
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020019)
20
21bind(
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020022 name = "protobuf_clib",
Alexander Polcynf5521c32017-04-26 14:18:39 -070023 actual = "@submodule_protobuf//:protoc_lib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020024)
25
26bind(
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020027 name = "protocol_compiler",
Alexander Polcynf5521c32017-04-26 14:18:39 -070028 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
Alexander Polcynf5521c32017-04-26 14:18:39 -070051new_local_repository(
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020052 name = "submodule_boringssl",
Alexander Polcynf5521c32017-04-26 14:18:39 -070053 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(
Alexander Polcynf5521c32017-04-26 14:18:39 -070064 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
80new_local_repository(
81 name = "submodule_benchmark",
82 path = "third_party/benchmark",
83 build_file = "third_party/benchmark.BUILD",
84)
Nicolas "Pixel" Noble8e0684b2017-03-27 18:50:04 +020085
86new_local_repository(
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080087 name = "submodule_cares",
88 path = "third_party/cares",
89 build_file = "third_party/cares/cares.BUILD",
90)