Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 1 | bind( |
| 2 | name = "nanopb", |
| 3 | actual = "//third_party/nanopb", |
| 4 | ) |
| 5 | |
| 6 | bind( |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame^] | 7 | name = "grpc_cpp_plugin", |
| 8 | actual = "//:grpc_cpp_plugin", |
| 9 | ) |
| 10 | |
| 11 | bind( |
| 12 | name = "grpc++", |
| 13 | actual = "//:grpc++", |
| 14 | ) |
| 15 | |
| 16 | bind( |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 17 | name = "libssl", |
| 18 | actual = "@submodule_boringssl//:ssl", |
| 19 | ) |
| 20 | |
| 21 | bind( |
| 22 | name = "zlib", |
| 23 | actual = "@submodule_zlib//:z", |
| 24 | ) |
| 25 | |
| 26 | bind( |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame^] | 27 | name = "protobuf", |
| 28 | actual = "@submodule_protobuf//:protobuf", |
| 29 | ) |
| 30 | |
| 31 | bind( |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 32 | name = "protobuf_clib", |
| 33 | actual = "@submodule_protobuf//:protoc_lib", |
| 34 | ) |
| 35 | |
| 36 | bind( |
| 37 | name = "protobuf_compiler", |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame^] | 38 | actual = "@submodule_protobuf//:protoc", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 39 | ) |
| 40 | |
| 41 | new_local_repository( |
| 42 | name = "submodule_boringssl", |
| 43 | path = "third_party/boringssl", |
| 44 | build_file = "third_party/boringssl/BUILD", |
| 45 | ) |
| 46 | |
| 47 | new_local_repository( |
| 48 | name = "submodule_zlib", |
| 49 | path = "third_party/zlib", |
| 50 | build_file = "third_party/zlib.BUILD", |
| 51 | ) |
| 52 | |
| 53 | new_local_repository( |
| 54 | name = "submodule_protobuf", |
| 55 | path = "third_party/protobuf", |
| 56 | build_file = "third_party/protobuf/BUILD", |
| 57 | ) |