forked from google-deepmind/reverb
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWORKSPACE
55 lines (43 loc) · 1.9 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
workspace(name = "reverb")
load("//tf:tf_configure.bzl", "tf_configure")
tf_configure(name = "local_config_tf")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "pybind11",
build_file = "@pybind11_bazel//:pybind11.BUILD",
sha256 = "832e2f309c57da9c1e6d4542dedd34b24e4192ecb4d62f6f4866a737454c9970",
strip_prefix = "pybind11-2.10.4",
urls = ["https://github.com/pybind/pybind11/archive/refs/tags/v2.10.4.tar.gz"],
)
http_archive(
name = "pybind11_bazel",
sha256 = "6426567481ee345eb48661e7db86adc053881cb4dd39fbf527c8986316b682b9",
strip_prefix = "pybind11_bazel-fc56ce8a8b51e3dd941139d329b63ccfea1d304b",
urls = ["https://github.com/pybind/pybind11_bazel/archive/fc56ce8a8b51e3dd941139d329b63ccfea1d304b.zip"],
)
load("@pybind11_bazel//:python_configure.bzl", "python_configure")
python_configure(name = "local_config_python")
git_repository(
name = "com_google_snappy",
commit = "c9f9edf6d75bb065fa47468bf035e051a57bec7c",
remote = "https://github.com/google/snappy",
)
http_archive(
name = "com_github_grpc_grpc",
sha256 = "5e53505a6c84030a26c4fddd71b3f46feec8e0a8eccff2a903b189d349ca6ff5",
strip_prefix = "grpc-1.54.0",
urls = ["https://github.com/grpc/grpc/archive/refs/tags/v1.54.0.tar.gz"],
)
ABSL_COMMIT = "fb3621f4f897824c0dbe0615fa94543df6192f30"
ABSL_SHA256 = "0320586856674d16b0b7a4d4afb22151bdc798490bb7f295eddd8f6a62b46fea"
http_archive(
name = "com_google_absl",
sha256 = ABSL_SHA256,
strip_prefix = "abseil-cpp-{commit}".format(commit = ABSL_COMMIT),
urls = ["https://github.com/abseil/abseil-cpp/archive/{commit}.tar.gz".format(commit = ABSL_COMMIT)],
)
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
grpc_deps()
load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
grpc_extra_deps()