blob: 9b79d04cde6f9e7fd6750f4e592d0e0064f61078 [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(
32 name = "gtest",
33 actual = "@submodule_gtest//:gtest",
34)
35
David Garcia Quintase9932d42017-02-17 16:44:30 -080036bind(
37 name = "gflags",
38 actual = "@com_github_gflags_gflags//:gflags",
39)
40
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020041new_local_repository(
42 name = "submodule_boringssl",
Nicolas "Pixel" Noblef9445d02017-01-04 22:46:47 +010043 build_file = "third_party/boringssl-with-bazel/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080044 path = "third_party/boringssl-with-bazel",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020045)
46
47new_local_repository(
48 name = "submodule_zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020049 build_file = "third_party/zlib.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080050 path = "third_party/zlib",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020051)
52
53new_local_repository(
54 name = "submodule_protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020055 build_file = "third_party/protobuf/BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080056 path = "third_party/protobuf",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020057)
Craig Tiller05fbe3c2017-02-17 13:27:21 -080058
59new_local_repository(
60 name = "submodule_gtest",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080061 build_file = "third_party/gtest.BUILD",
David Garcia Quintase9932d42017-02-17 16:44:30 -080062 path = "third_party/googletest",
63)
64
65local_repository(
66 name = "com_github_gflags_gflags",
67 path = "third_party/gflags",
Craig Tiller05fbe3c2017-02-17 13:27:21 -080068)