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 | |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 31 | bind( |
| 32 | name = "gtest", |
| 33 | actual = "@submodule_gtest//:gtest", |
| 34 | ) |
| 35 | |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 36 | new_local_repository( |
| 37 | name = "submodule_boringssl", |
Nicolas "Pixel" Noble | f9445d0 | 2017-01-04 22:46:47 +0100 | [diff] [blame] | 38 | path = "third_party/boringssl-with-bazel", |
| 39 | build_file = "third_party/boringssl-with-bazel/BUILD", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 40 | ) |
| 41 | |
| 42 | new_local_repository( |
| 43 | name = "submodule_zlib", |
| 44 | path = "third_party/zlib", |
| 45 | build_file = "third_party/zlib.BUILD", |
| 46 | ) |
| 47 | |
| 48 | new_local_repository( |
| 49 | name = "submodule_protobuf", |
| 50 | path = "third_party/protobuf", |
| 51 | build_file = "third_party/protobuf/BUILD", |
| 52 | ) |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 53 | |
| 54 | new_local_repository( |
| 55 | name = "submodule_gtest", |
| 56 | path = "third_party/googletest", |
| 57 | build_file = "third_party/gtest.BUILD", |
| 58 | ) |