-
Notifications
You must be signed in to change notification settings - Fork 11
/
WORKSPACE
79 lines (58 loc) · 2.4 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
workspace(
name = "lluvia",
)
###########################################################
# download third-party dependencies
###########################################################
load("@lluvia//lluvia/bazel:workspace.bzl", "lluvia_workspace")
lluvia_workspace()
###########################################################
# Python configuration
###########################################################
# CONFIGURE: go to platform/values.bzl and change the paths
# of the python interpreters according to your installation.
# Only the values for your OS matter.
register_toolchains("@lluvia//platform:python_toolchain")
# Only needed if using the packaging rules.
load("@rules_python//python:pip.bzl", "pip_repositories")
pip_repositories()
###########################################################
# PLATFORM CONFIGURATION
###########################################################
# TODO: Room for improvement here. I should be able to have a single
# version of both python_lib and numpy_lib regardless of the
# operating system.
# Linux
load("@lluvia//platform/linux:python.bzl", "numpy_linux", "python_linux")
python_linux(name = "python_linux")
numpy_linux(name = "numpy_linux")
# Windows
load("@lluvia//platform/windows:python.bzl", "numpy_windows", "python_windows")
python_windows(name = "python_windows")
numpy_windows(name = "numpy_windows")
###########################################################
# Packaging rules
###########################################################
load("@ll_rules_pkg//:deps.bzl", "rules_pkg_dependencies")
rules_pkg_dependencies()
###########################################################
# Vulkan rules
###########################################################
load("@rules_vulkan//vulkan:repositories.bzl", "vulkan_repositories")
vulkan_repositories(
android_use_host_vulkan_sdk = True,
)
###########################################################
# Lua rules
###########################################################
load("@rules_lua//toolchains:repositories.bzl", "lua_repositories")
lua_repositories()
###########################################################
# Nested worskspaces
#
# See https://stackoverflow.com/questions/65229233/bazel-workspace-file-not-behaving-as-documented
###########################################################
# local_repository(
# name = "examples_workspace",
# path = "examples",
# )