aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGravatar Makarand Dharmapurikar <makarandd@google.com>2017-02-21 14:08:01 -0800
committerGravatar Makarand Dharmapurikar <makarandd@google.com>2017-02-21 14:08:01 -0800
commit003092a2020c927408fb173dfd9dcdf2dfc35775 (patch)
treed8a1684f83700825bac3a2bad1a62b380ab6d696 /WORKSPACE
parent1096672527c837cf8d7a03499b251c64da2ddbbe (diff)
code and BUILD file for creating a grpcz client
The client binary can be built with 'bazel build //tools/grpcz:grpcz_client' and can be invoked with bazel-bin/tools/grpcz/grpcz_client --server SERVER_ADDR:PORT You can see the stats page at http://localhost:8000/grpcz
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE26
1 files changed, 22 insertions, 4 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 4f90f06d88..5d163f78e8 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -33,26 +33,44 @@ bind(
actual = "@submodule_gtest//:gtest",
)
+bind(
+ name = "gflags",
+ actual = "@com_github_gflags_gflags//:gflags",
+)
+
new_local_repository(
name = "submodule_boringssl",
- path = "third_party/boringssl-with-bazel",
build_file = "third_party/boringssl-with-bazel/BUILD",
+ path = "third_party/boringssl-with-bazel",
)
new_local_repository(
name = "submodule_zlib",
- path = "third_party/zlib",
build_file = "third_party/zlib.BUILD",
+ path = "third_party/zlib",
)
new_local_repository(
name = "submodule_protobuf",
- path = "third_party/protobuf",
build_file = "third_party/protobuf/BUILD",
+ path = "third_party/protobuf",
)
new_local_repository(
name = "submodule_gtest",
- path = "third_party/googletest",
build_file = "third_party/gtest.BUILD",
+ path = "third_party/googletest",
+)
+
+local_repository(
+ name = "com_github_gflags_gflags",
+ path = "third_party/gflags",
+)
+# used for tools/grpcz/grpcz_client
+git_repository(
+ name = "mongoose_repo",
+ commit = "21b9ddd490783e3afaa0fa9b45d6c1133eb922dc",
+ remote = "https://github.com/makdharma/mongoose.git"
)
+
+