blob: 1499a0a52ffccddc7a263db045b6028475c02f9d [file] [log] [blame]
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +02001bind(
2 name = "nanopb",
3 actual = "//third_party/nanopb",
4)
5
6bind(
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +02007 name = "grpc_cpp_plugin",
8 actual = "//:grpc_cpp_plugin",
9)
10
11bind(
12 name = "grpc++",
13 actual = "//:grpc++",
14)
15
16bind(
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020017 name = "libssl",
18 actual = "@submodule_boringssl//:ssl",
19)
20
21bind(
22 name = "zlib",
23 actual = "@submodule_zlib//:z",
24)
25
26bind(
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020027 name = "protobuf",
28 actual = "@submodule_protobuf//:protobuf",
29)
30
31bind(
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020032 name = "protobuf_clib",
33 actual = "@submodule_protobuf//:protoc_lib",
34)
35
36bind(
37 name = "protobuf_compiler",
Nicolas "Pixel" Noble4dc64312016-10-20 23:07:37 +020038 actual = "@submodule_protobuf//:protoc",
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020039)
40
41new_local_repository(
42 name = "submodule_boringssl",
43 path = "third_party/boringssl",
44 build_file = "third_party/boringssl/BUILD",
45)
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)