blob: bfb3a8c90358f3790500c7e2b77d5aa5b6a0d0b2 [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",
Nicolas "Pixel" Noble736907c2017-05-12 20:27:21 +02008 actual = "@boringssl//:ssl",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +02009)
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(
Nicolas "Pixel" Noblefc49d6e2017-09-01 23:53:34 +020042 name = "gmock",
43 actual = "@submodule_gtest//:gmock",
44)
45
46bind(
Craig Tiller19f3ea22017-02-17 15:17:05 -080047 name = "benchmark",
48 actual = "@submodule_benchmark//:benchmark",
Craig Tilleraf115812017-03-09 15:09:34 -080049)
50
51bind(
David Garcia Quintase9932d42017-02-17 16:44:30 -080052 name = "gflags",
53 actual = "@com_github_gflags_gflags//:gflags",
Craig Tiller19f3ea22017-02-17 15:17:05 -080054)
55
Vijay Paia935ae12017-04-13 21:07:45 +000056local_repository(
Nicolas "Pixel" Noble736907c2017-05-12 20:27:21 +020057 name = "boringssl",
David Garcia Quintase9932d42017-02-17 16:44:30 -080058 path = "third_party/boringssl-with-bazel",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020059)
60
61new_local_repository(
62 name = "submodule_zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020063 build_file = "third_party/zlib.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080064 path = "third_party/zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020065)
66
67new_local_repository(
Vijay Paia935ae12017-04-13 21:07:45 +000068 name = "com_google_protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020069 build_file = "third_party/protobuf/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080070 path = "third_party/protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020071)
Craig Tiller05fbe3c2017-02-17 13:27:21 -080072
73new_local_repository(
74 name = "submodule_gtest",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080075 build_file = "third_party/gtest.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080076 path = "third_party/googletest",
77)
78
79local_repository(
80 name = "com_github_gflags_gflags",
81 path = "third_party/gflags",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080082)
Craig Tiller19f3ea22017-02-17 15:17:05 -080083
84new_local_repository(
85 name = "submodule_benchmark",
86 path = "third_party/benchmark",
87 build_file = "third_party/benchmark.BUILD",
88)
Nicolas "Pixel" Noble8e0684b2017-03-27 18:50:04 +020089
90new_local_repository(
Yuchen Zeng4c702ed2017-01-23 10:30:10 -080091 name = "submodule_cares",
92 path = "third_party/cares",
93 build_file = "third_party/cares/cares.BUILD",
94)