-
Notifications
You must be signed in to change notification settings - Fork 11
/
WORKSPACE
39 lines (27 loc) · 1.23 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
workspace(name = "planner_uct")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("//util:deps.bzl", "planner_uct_rules_dependencies")
planner_uct_rules_dependencies()
load("@bark_project//tools:deps.bzl", "bark_dependencies")
bark_dependencies()
load("@pybind11_bazel//:python_configure.bzl", "python_configure")
python_configure(name = "local_config_python")
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()
# -------- Benchmark Database -----------------------
git_repository(
name = "benchmark_database",
commit="119864d1940110074237386861ab6e4ce8d04477",
remote = "https://github.com/bark-simulator/benchmark-database"
)
load("@benchmark_database//util:deps.bzl", "benchmark_database_dependencies")
load("@benchmark_database//load:load.bzl", "benchmark_database_release")
benchmark_database_dependencies()
benchmark_database_release()
# Google or tools for mamcts -----------------------------
load("@mamcts_project//util:deps_or.bzl", "google_or_dependencies")
google_or_dependencies()
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
# Load common dependencies.
protobuf_deps()