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( |
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 | |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 51 | new_local_repository( |
| 52 | name = "submodule_boringssl", |
Nicolas "Pixel" Noble | f9445d0 | 2017-01-04 22:46:47 +0100 | [diff] [blame] | 53 | build_file = "third_party/boringssl-with-bazel/BUILD", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 54 | path = "third_party/boringssl-with-bazel", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 55 | ) |
| 56 | |
| 57 | new_local_repository( |
| 58 | name = "submodule_zlib", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 59 | build_file = "third_party/zlib.BUILD", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 60 | path = "third_party/zlib", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 61 | ) |
| 62 | |
| 63 | new_local_repository( |
| 64 | name = "submodule_protobuf", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 65 | build_file = "third_party/protobuf/BUILD", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 66 | path = "third_party/protobuf", |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 67 | ) |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 68 | |
| 69 | new_local_repository( |
| 70 | name = "submodule_gtest", |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 71 | build_file = "third_party/gtest.BUILD", |
David Garcia Quintas | e9932d4 | 2017-02-17 16:44:30 -0800 | [diff] [blame] | 72 | path = "third_party/googletest", |
| 73 | ) |
| 74 | |
| 75 | local_repository( |
| 76 | name = "com_github_gflags_gflags", |
| 77 | path = "third_party/gflags", |
Craig Tiller | 05fbe3c | 2017-02-17 13:27:21 -0800 | [diff] [blame] | 78 | ) |
Craig Tiller | 19f3ea2 | 2017-02-17 15:17:05 -0800 | [diff] [blame] | 79 | |
Makarand Dharmapurikar | 003092a | 2017-02-21 14:08:01 -0800 | [diff] [blame] | 80 | git_repository( |
| 81 | name = "mongoose_repo", |
Makarand Dharmapurikar | 4be6258 | 2017-02-22 14:32:41 -0800 | [diff] [blame] | 82 | commit = "4120a97945b41195a6223a600dae8e3b19bed19e", |
Makarand Dharmapurikar | 003092a | 2017-02-21 14:08:01 -0800 | [diff] [blame] | 83 | remote = "https://github.com/makdharma/mongoose.git" |
| 84 | ) |
Makarand Dharmapurikar | a0649dd | 2017-03-27 09:18:21 -0700 | [diff] [blame] | 85 | |
Craig Tiller | 19f3ea2 | 2017-02-17 15:17:05 -0800 | [diff] [blame] | 86 | new_local_repository( |
| 87 | name = "submodule_benchmark", |
| 88 | path = "third_party/benchmark", |
| 89 | build_file = "third_party/benchmark.BUILD", |
| 90 | ) |
Nicolas "Pixel" Noble | 8e0684b | 2017-03-27 18:50:04 +0200 | [diff] [blame] | 91 | |
| 92 | new_local_repository( |
Yuchen Zeng | 4c702ed | 2017-01-23 10:30:10 -0800 | [diff] [blame] | 93 | name = "submodule_cares", |
| 94 | path = "third_party/cares", |
| 95 | build_file = "third_party/cares/cares.BUILD", |
| 96 | ) |