From 48f2f2a1d144b4d68cd250afd9118772091c4880 Mon Sep 17 00:00:00 2001 From: Lizan Zhou Date: Tue, 7 Feb 2017 12:45:14 -0800 Subject: [PATCH] Update grpc and protobuf (#24) --- mixerclient/BUILD | 1 + mixerclient/repositories.bzl | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/mixerclient/BUILD b/mixerclient/BUILD index dba3790e6bc8..bf57a099a013 100644 --- a/mixerclient/BUILD +++ b/mixerclient/BUILD @@ -44,6 +44,7 @@ cc_library( visibility = ["//visibility:public"], deps = [ ":simple_lru_cache", + "//external:grpc++", "//external:boringssl_crypto", "//external:mixer_api_cc_proto", ], diff --git a/mixerclient/repositories.bzl b/mixerclient/repositories.bzl index c9c5a7df1fd1..0906a454dd50 100644 --- a/mixerclient/repositories.bzl +++ b/mixerclient/repositories.bzl @@ -36,7 +36,7 @@ def boringssl_repositories(bind=True): def protobuf_repositories(bind=True): native.git_repository( name = "protobuf_git", - commit = "a428e42072765993ff674fda72863c9f1aa2d268", # v3.1.0 + commit = "593e917c176b5bc5aafa57bf9f6030d749d91cd5", # v3.2.0 remote = "https://github.com/google/protobuf.git", ) @@ -68,7 +68,7 @@ def protobuf_repositories(bind=True): native.bind( name = "protobuf_clib", - actual = "@protobuf_git//:protobuf_lite", + actual = "@protobuf_git//:protoc_lib", ) @@ -300,7 +300,7 @@ def grpc_repositories(bind=True): native.git_repository( name = "grpc_git", - commit = "d28417c856366df704200f544e72d31056931bce", + commit = "bb3edafea245a9780cc4c10f0b58da21e8193f38", # v1.1.1 remote = "https://github.com/grpc/grpc.git", ) @@ -327,7 +327,7 @@ def grpc_repositories(bind=True): native.bind( name = "grpc_lib", - actual = "@grpc_git//:grpc++_reflection", + actual = "@grpc_git//:grpc++_codegen_proto", ) def googleapis_repositories(protobuf_repo="@protobuf_git//", bind=True):