aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2017-01-23 10:30:10 -0800
committerGravatar Yuchen Zeng <zyc@google.com>2017-01-23 10:30:10 -0800
commit4c702ed1a1f5ae714c93d6738c1b1fda037b6019 (patch)
tree9b63e22d6d6e7c47b99ef1978eb40a741ea96e2d /WORKSPACE
parent6a167b6e86100d013ad15802f410d7a6cb1ef355 (diff)
Add bazel build rule for c-ares
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE11
1 files changed, 11 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 9883109634..9a4a6cde69 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -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",
+)