forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
52 lines (43 loc) · 1.46 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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_repository")
git_repository(
name = "com_github_nelhage_rules_boost",
commit = "6d6fd834281cb8f8e758dd9ad76df86304bf1869",
remote = "https://github.com/nelhage/rules_boost",
)
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()
git_repository(
name = "com_github_google_flatbuffers",
remote = "https://github.com/google/flatbuffers.git",
commit = "63d51afd1196336a7d1f56a988091ef05deb1c62",
)
git_repository(
name = "com_google_googletest",
remote = "https://github.com/google/googletest",
commit = "3306848f697568aacf4bcca330f6bdd5ce671899",
)
git_repository(
name = "com_github_gflags_gflags",
remote = "https://github.com/gflags/gflags.git",
tag = "v2.2.2",
)
new_git_repository(
name = "com_github_google_glog",
build_file = "//bazel:BUILD.glog",
remote = "https://github.com/google/glog.git",
tag = "v0.3.5",
)
new_git_repository(
name = "plasma",
build_file = "@//bazel:BUILD.plasma",
remote = "https://github.com/ray-project/arrow",
commit = "6a27c660ea700febf6fd73b2e851ab96e9315134",
)
new_git_repository(
name="cython",
build_file="@//bazel:BUILD.cython",
remote = "https://github.com/cython/cython",
commit = "49414dbc7ddc2ca2979d6dbe1e44714b10d72e7e",
)
load("@//bazel:python_configure.bzl", "python_configure")
python_configure(name="local_config_python")