diff options
author | Yuchen Zeng <zyc@google.com> | 2017-01-23 10:30:10 -0800 |
---|---|---|
committer | Yuchen Zeng <zyc@google.com> | 2017-01-23 10:30:10 -0800 |
commit | 4c702ed1a1f5ae714c93d6738c1b1fda037b6019 (patch) | |
tree | 9b63e22d6d6e7c47b99ef1978eb40a741ea96e2d /WORKSPACE | |
parent | 6a167b6e86100d013ad15802f410d7a6cb1ef355 (diff) |
Add bazel build rule for c-ares
Diffstat (limited to 'WORKSPACE')
-rw-r--r-- | WORKSPACE | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -28,6 +28,11 @@ bind( actual = "@submodule_protobuf//:protoc", ) +bind( + name = "cares", + actual = "@submodule_cares//:ares", +) + new_local_repository( name = "submodule_boringssl", path = "third_party/boringssl-with-bazel", @@ -45,3 +50,9 @@ new_local_repository( path = "third_party/protobuf", build_file = "third_party/protobuf/BUILD", ) + +new_local_repository( + name = "submodule_cares", + path = "third_party/cares", + build_file = "third_party/cares/cares.BUILD", +) |