forked from agoulti/tools_remote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
29 lines (24 loc) · 1.12 KB
/
WORKSPACE
File metadata and controls
29 lines (24 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
workspace(name = "remote_client")
# Needed for "well-known protos" and @com_google_protobuf//:protoc.
http_archive(
name = "com_google_protobuf",
sha256 = "091d4263d9a55eccb6d3c8abde55c26eaaa933dea9ecabb185cdf3795f9b5ca2",
strip_prefix = "protobuf-3.5.1.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.1.zip"],
)
# Needed for @grpc_java//compiler:grpc_java_plugin.
http_archive(
name = "grpc_java",
sha256 = "000a6f8579f1b93e5d1b085c29d89dbc1ea8b5a0c16d7427f42715f0d7f0b247",
strip_prefix = "grpc-java-d792a72ea15156254e3b3735668e9c4539837fd3",
urls = ["https://github.com/grpc/grpc-java/archive/d792a72ea15156254e3b3735668e9c4539837fd3.zip"],
)
new_http_archive(
name = "googleapis",
sha256 = "7b6ea252f0b8fb5cd722f45feb83e115b689909bbb6a393a873b6cbad4ceae1d",
url = "https://github.com/googleapis/googleapis/archive/143084a2624b6591ee1f9d23e7f5241856642f4d.zip",
strip_prefix = "googleapis-143084a2624b6591ee1f9d23e7f5241856642f4d",
build_file = "BUILD.googleapis",
)
load("//3rdparty:workspace.bzl", "maven_dependencies", "declare_maven")
maven_dependencies(declare_maven)