blob: a78a88979e7d149283a9cf3582a31cf964909927 [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",
Vijay Paia935ae12017-04-13 21:07:45 +000018 actual = "@com_google_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",
Vijay Paia935ae12017-04-13 21:07:45 +000023 actual = "@com_google_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",
Vijay Paia935ae12017-04-13 21:07:45 +000028 actual = "@com_google_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
Vijay Paia935ae12017-04-13 21:07:45 +000051local_repository(
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020052 name = "submodule_boringssl",
David Garcia Quintase9932d42017-02-17 16:44:30 -080053 path = "third_party/boringssl-with-bazel",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020054)
55
56new_local_repository(
57 name = "submodule_zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020058 build_file = "third_party/zlib.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080059 path = "third_party/zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020060)
61
62new_local_repository(
Vijay Paia935ae12017-04-13 21:07:45 +000063 name = "com_google_protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020064 build_file = "third_party/protobuf/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080065 path = "third_party/protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020066)
Craig Tiller05fbe3c2017-02-17 13:27:21 -080067
68new_local_repository(
69 name = "submodule_gtest",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080070 build_file = "third_party/gtest.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080071 path = "third_party/googletest",
72)
73
74local_repository(
75 name = "com_github_gflags_gflags",
76 path = "third_party/gflags",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080077)
Craig Tiller19f3ea22017-02-17 15:17:05 -080078
79new_local_repository(
80 name = "submodule_benchmark",
81 path = "third_party/benchmark",
82 build_file = "third_party/benchmark.BUILD",
83)
Nicolas "Pixel" Noble8e0684b2017-03-27 18:50:04 +020084
85new_local_repository(
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080086 name = "submodule_cares",
87 path = "third_party/cares",
88 build_file = "third_party/cares/cares.BUILD",
89)