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( |
| 7 | name = "libssl", |
| 8 | actual = "@submodule_boringssl//:ssl", |
| 9 | ) |
| 10 | |
| 11 | bind( |
| 12 | name = "zlib", |
| 13 | actual = "@submodule_zlib//:z", |
| 14 | ) |
| 15 | |
| 16 | bind( |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame] | 17 | name = "protobuf", |
| 18 | actual = "@submodule_protobuf//:protobuf", |
| 19 | ) |
| 20 | |
| 21 | bind( |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 22 | name = "protobuf_clib", |
| 23 | actual = "@submodule_protobuf//:protoc_lib", |
| 24 | ) |
| 25 | |
| 26 | bind( |
Nicolas "Pixel" Noble | 799bd5e | 2016-10-21 01:54:32 +0200 | [diff] [blame] | 27 | name = "protocol_compiler", |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame] | 28 | actual = "@submodule_protobuf//:protoc", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 29 | ) |
| 30 | |
| 31 | new_local_repository( |
| 32 | name = "submodule_boringssl", |
Nicolas "Pixel" Noble | f9445d0 | 2017-01-04 22:46:47 +0100 | [diff] [blame] | 33 | path = "third_party/boringssl-with-bazel", |
| 34 | build_file = "third_party/boringssl-with-bazel/BUILD", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 35 | ) |
| 36 | |
| 37 | new_local_repository( |
| 38 | name = "submodule_zlib", |
| 39 | path = "third_party/zlib", |
| 40 | build_file = "third_party/zlib.BUILD", |
| 41 | ) |
| 42 | |
| 43 | new_local_repository( |
| 44 | name = "submodule_protobuf", |
| 45 | path = "third_party/protobuf", |
| 46 | build_file = "third_party/protobuf/BUILD", |
| 47 | ) |