blob: 988310963457f9d8052cded0ceb2a326d58d1703 [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
31new_local_repository(
32 name = "submodule_boringssl",
Nicolas "Pixel" Noblef9445d02017-01-04 22:46:47 +010033 path = "third_party/boringssl-with-bazel",
34 build_file = "third_party/boringssl-with-bazel/BUILD",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020035)
36
37new_local_repository(
38 name = "submodule_zlib",
39 path = "third_party/zlib",
40 build_file = "third_party/zlib.BUILD",
41)
42
43new_local_repository(
44 name = "submodule_protobuf",
45 path = "third_party/protobuf",
46 build_file = "third_party/protobuf/BUILD",
47)