From 003092a2020c927408fb173dfd9dcdf2dfc35775 Mon Sep 17 00:00:00 2001 From: Makarand Dharmapurikar Date: Tue, 21 Feb 2017 14:08:01 -0800 Subject: 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 --- WORKSPACE | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'WORKSPACE') 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" ) + + -- cgit v1.2.3 From 4be62589004152e7575ee1808fd4f52d9134296c Mon Sep 17 00:00:00 2001 From: Makarand Dharmapurikar Date: Wed, 22 Feb 2017 14:32:41 -0800 Subject: updated to latest mongoose BUILD --- WORKSPACE | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'WORKSPACE') diff --git a/WORKSPACE b/WORKSPACE index 13786ce468..f27159d4af 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -70,8 +70,6 @@ local_repository( # used for tools/grpcz/grpcz_client git_repository( name = "mongoose_repo", - commit = "21b9ddd490783e3afaa0fa9b45d6c1133eb922dc", + commit = "4120a97945b41195a6223a600dae8e3b19bed19e", remote = "https://github.com/makdharma/mongoose.git" ) - - -- cgit v1.2.3