blob: b92986127b6a5bb074cda1bc3b41d04e801d6102 [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
Craig Tiller19f3ea22017-02-17 15:17:05 -080036bind(
37 name = "benchmark",
38 actual = "@submodule_benchmark//:benchmark",
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 path = "third_party/boringssl-with-bazel",
44 build_file = "third_party/boringssl-with-bazel/BUILD",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020045)
46
47new_local_repository(
48 name = "submodule_zlib",
49 path = "third_party/zlib",
50 build_file = "third_party/zlib.BUILD",
51)
52
53new_local_repository(
54 name = "submodule_protobuf",
55 path = "third_party/protobuf",
56 build_file = "third_party/protobuf/BUILD",
57)
Craig Tiller05fbe3c2017-02-17 13:27:21 -080058
59new_local_repository(
60 name = "submodule_gtest",
61 path = "third_party/googletest",
62 build_file = "third_party/gtest.BUILD",
63)
Craig Tiller19f3ea22017-02-17 15:17:05 -080064
65new_local_repository(
66 name = "submodule_benchmark",
67 path = "third_party/benchmark",
68 build_file = "third_party/benchmark.BUILD",
69)