-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathWORKSPACE
28 lines (21 loc) · 969 Bytes
/
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
workspace(name = "bark_ml")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("//utils:dependencies.bzl", "bark_ml_dependencies")
bark_ml_dependencies()
load("@bark_project//tools:deps.bzl", "bark_dependencies")
bark_dependencies()
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()
load("@pybind11_bazel//:python_configure.bzl", "python_configure")
python_configure(name = "local_config_python")
# -------- 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()