aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/grpc/BUILD
diff options
context:
space:
mode:
authorGravatar Lukacs T. Berki <lberki@google.com>2016-07-06 12:01:26 +0200
committerGravatar Lukacs T. Berki <lberki@google.com>2016-07-06 12:05:28 +0200
commitd449996ce111494ef684bc5a78882619e3d0ef88 (patch)
tree6f63b1eb9188fcb880bab053ee57bc7251796e1d /third_party/grpc/BUILD
parent95ee651bf734c8dcbfc72dd41b15dc5f3dcdfa02 (diff)
Update the Java gPRC libraries to 0.14.1 .
This makes the regeneration instruction in much simpler (since now they do publish 64-bit Linux binaries), and more importantly, fixes a race condition between a client request and the gRPC server timeout thread. Change-Id: I9c8b628530fa0192804f8e67b285963ac26110c4
Diffstat (limited to 'third_party/grpc/BUILD')
-rw-r--r--third_party/grpc/BUILD26
1 files changed, 16 insertions, 10 deletions
diff --git a/third_party/grpc/BUILD b/third_party/grpc/BUILD
index 9693ea3d8e..25d2a5f407 100644
--- a/third_party/grpc/BUILD
+++ b/third_party/grpc/BUILD
@@ -9,22 +9,28 @@ filegroup(
java_import(
name = "grpc-jar",
- jars = ["grpc-all-0.13.2.jar"],
+ jars = [
+ "grpc-netty-0.14.1.jar",
+ "grpc-protobuf-0.14.1.jar",
+ "grpc-protobuf-lite-0.14.1.jar",
+ "grpc-stub-0.14.1.jar",
+ "grpc-core-0.14.1.jar",
+ ],
runtime_deps = ["//third_party:netty"],
)
filegroup(
name = "grpc-java-plugin",
srcs = select({
- "//third_party:windows_mingw": ["protoc-gen-grpc-java-0.13.2-windows-x86_32.exe"],
- "//third_party:windows_msys64_mingw64": ["protoc-gen-grpc-java-0.13.2-windows-x86_64.exe"],
- "//third_party:windows_msys64": ["protoc-gen-grpc-java-0.13.2-windows-x86_64.exe"],
- "//third_party:windows_clang": ["protoc-gen-grpc-java-0.13.2-windows-x86_64.exe"],
- "//third_party:darwin": ["protoc-gen-grpc-java-0.13.2-osx-x86_64.exe"],
- "//third_party:k8": ["protoc-gen-grpc-java-0.13.2-linux-x86_64.exe"],
- "//third_party:piii": ["protoc-gen-grpc-java-0.13.2-linux-x86_32.exe"],
- "//third_party:arm": ["protoc-gen-grpc-java-0.13.2-linux-x86_32.exe"],
- "//third_party:freebsd": ["protoc-gen-grpc-java-0.13.2-linux-x86_32.exe"],
+ "//third_party:windows_mingw": ["protoc-gen-grpc-java-0.14.1-windows-x86_32.exe"],
+ "//third_party:windows_msys64_mingw64": ["protoc-gen-grpc-java-0.14.1-windows-x86_64.exe"],
+ "//third_party:windows_msys64": ["protoc-gen-grpc-java-0.14.1-windows-x86_64.exe"],
+ "//third_party:windows_clang": ["protoc-gen-grpc-java-0.14.1-windows-x86_64.exe"],
+ "//third_party:darwin": ["protoc-gen-grpc-java-0.14.1-osx-x86_64.exe"],
+ "//third_party:k8": ["protoc-gen-grpc-java-0.14.1-linux-x86_64.exe"],
+ "//third_party:piii": ["protoc-gen-grpc-java-0.14.1-linux-x86_32.exe"],
+ "//third_party:arm": ["protoc-gen-grpc-java-0.14.1-linux-x86_32.exe"],
+ "//third_party:freebsd": ["protoc-gen-grpc-java-0.14.1-linux-x86_32.exe"],
}),
)