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", |
Vijay Pai | a935ae1 | 2017-04-13 21:07:45 +0000 | [diff] [blame] | 18 | actual = "@com_google_protobuf//:protobuf", |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame] | 19 | ) |
| 20 | |
| 21 | bind( |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 22 | name = "protobuf_clib", |
Vijay Pai | a935ae1 | 2017-04-13 21:07:45 +0000 | [diff] [blame] | 23 | actual = "@com_google_protobuf//:protoc_lib", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 24 | ) |
| 25 | |
| 26 | bind( |
Nicolas "Pixel" Noble | 799bd5e | 2016-10-21 01:54:32 +0200 | [diff] [blame] | 27 | name = "protocol_compiler", |
Vijay Pai | a935ae1 | 2017-04-13 21:07:45 +0000 | [diff] [blame] | 28 | actual = "@com_google_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( |
Yuchen Zeng | 4c702ed | 2017-01-23 10:30:10 -0800 | [diff] [blame] | 32 | name = "cares", |
| 33 | actual = "@submodule_cares//:ares", |
| 34 | ) |
| 35 | |
Yuchen Zeng | 2c97708 | 2017-02-27 13:35:41 -0800 | [diff] [blame] | 36 | bind( |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 37 | name = "gtest", |
| 38 | actual = "@submodule_gtest//:gtest", |
| 39 | ) |
| 40 | |
Craig Tiller | 19f3ea2 | 2017-02-17 15:17:05 -0800 | [diff] [blame] | 41 | bind( |
| 42 | name = "benchmark", |
| 43 | actual = "@submodule_benchmark//:benchmark", |
Craig Tiller | af11581 | 2017-03-09 15:09:34 -0800 | [diff] [blame] | 44 | ) |
| 45 | |
| 46 | bind( |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 47 | name = "gflags", |
| 48 | actual = "@com_github_gflags_gflags//:gflags", |
Craig Tiller | 19f3ea2 | 2017-02-17 15:17:05 -0800 | [diff] [blame] | 49 | ) |
| 50 | |
Vijay Pai | a935ae1 | 2017-04-13 21:07:45 +0000 | [diff] [blame] | 51 | local_repository( |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 52 | name = "submodule_boringssl", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 53 | path = "third_party/boringssl-with-bazel", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 54 | ) |
| 55 | |
| 56 | new_local_repository( |
| 57 | name = "submodule_zlib", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 58 | build_file = "third_party/zlib.BUILD", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 59 | path = "third_party/zlib", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 60 | ) |
| 61 | |
| 62 | new_local_repository( |
Vijay Pai | a935ae1 | 2017-04-13 21:07:45 +0000 | [diff] [blame] | 63 | name = "com_google_protobuf", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 64 | build_file = "third_party/protobuf/BUILD", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 65 | path = "third_party/protobuf", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 66 | ) |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 67 | |
| 68 | new_local_repository( |
| 69 | name = "submodule_gtest", |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 70 | build_file = "third_party/gtest.BUILD", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 71 | path = "third_party/googletest", |
| 72 | ) |
| 73 | |
| 74 | local_repository( |
| 75 | name = "com_github_gflags_gflags", |
| 76 | path = "third_party/gflags", |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 77 | ) |
Craig Tiller | 19f3ea2 | 2017-02-17 15:17:05 -0800 | [diff] [blame] | 78 | |
| 79 | new_local_repository( |
| 80 | name = "submodule_benchmark", |
| 81 | path = "third_party/benchmark", |
| 82 | build_file = "third_party/benchmark.BUILD", |
| 83 | ) |
Nicolas "Pixel" Noble | 8e0684b | 2017-03-27 18:50:04 +0200 | [diff] [blame] | 84 | |
| 85 | new_local_repository( |
Yuchen Zeng | 4c702ed | 2017-01-23 10:30:10 -0800 | [diff] [blame] | 86 | name = "submodule_cares", |
| 87 | path = "third_party/cares", |
| 88 | build_file = "third_party/cares/cares.BUILD", |
| 89 | ) |