-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
30 lines (25 loc) · 1.08 KB
/
WORKSPACE
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
30
workspace(name = "build_buildfarm")
# Needed for "well-known protos" and @com_google_protobuf//:protoc.
http_archive(
name = "com_google_protobuf",
sha256 = "cef7f1b5a7c5fba672bec2a319246e8feba471f04dcebfe362d55930ee7c1c30",
strip_prefix = "protobuf-3.5.0",
urls = ["https://github.com/google/protobuf/archive/v3.5.0.zip"],
)
# Needed for @grpc_java//compiler:grpc_java_plugin.
http_archive(
name = "grpc_java",
sha256 = "20a35772b20d8194854f6d149324f971472b7acc1a76a0969a048c4c02a1da0d",
strip_prefix = "grpc-java-1.8.0",
urls = ["https://github.com/grpc/grpc-java/archive/v1.8.0.zip"],
)
# The API that we implement.
new_http_archive(
name = "googleapis",
sha256 = "27ade61091175f5bad45ec207f4dde524d3c8148903b60fa5641e29e3b9c5fa9",
url = "https://github.com/googleapis/googleapis/archive/9ea26fdb1869d674fa21c92e5818ba4eadd500c2.zip",
strip_prefix = "googleapis-9ea26fdb1869d674fa21c92e5818ba4eadd500c2",
build_file = "BUILD.googleapis",
)
load("//3rdparty:workspace.bzl", "maven_dependencies", "declare_maven")
maven_dependencies(declare_maven)