-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup_deps.bzl
More file actions
21 lines (17 loc) · 893 Bytes
/
setup_deps.bzl
File metadata and controls
21 lines (17 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_setup")
load("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure")
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
load("@python_3_10//:defs.bzl", "interpreter")
load("@rules_python//python:pip.bzl", "pip_parse")
load("@python_deps//:requirements.bzl", install_python_deps = "install_deps")
def setup_dependencies():
bazel_skylib_workspace()
boost_deps()
hedron_compile_commands_setup()
# FIXME: Should we allow all targets in a release build?
# Limit the number of backends here to save on compile time for now.
llvm_configure(name = "llvm-project", targets = ["AArch64", "X86"])
protobuf_deps()
install_python_deps()