-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathWORKSPACE
More file actions
55 lines (30 loc) · 1.2 KB
/
WORKSPACE
File metadata and controls
55 lines (30 loc) · 1.2 KB
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 = "envpool")
load("//envpool:workspace0.bzl", workspace0 = "workspace")
workspace0()
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()
load("@rules_cc//cc:extensions.bzl", "compatibility_proxy_repo")
compatibility_proxy_repo()
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()
load("@rules_java//java:rules_java_deps.bzl", "rules_java_dependencies")
rules_java_dependencies()
load("@rules_java//java:repositories.bzl", "rules_java_toolchains")
rules_java_toolchains()
load("@rules_python//python:repositories.bzl", "py_repositories")
py_repositories()
load("//envpool:workspace1.bzl", workspace1 = "workspace")
workspace1()
# QT special, cannot move to workspace2.bzl, not sure why
load("@local_config_qt//:local_qt.bzl", "local_qt_path")
new_local_repository(
name = "qt",
build_file = "@com_justbuchanan_rules_qt//:qt.BUILD",
path = local_qt_path(),
)
load("@com_justbuchanan_rules_qt//tools:qt_toolchain.bzl", "register_qt_toolchains")
register_qt_toolchains()
load("//envpool:pip.bzl", pip_workspace = "workspace")
pip_workspace()
load("@pip_requirements//:requirements.bzl", "install_deps")
install_deps()