forked from KhronosGroup/SPIRV-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MODULE.bazel
33 lines (27 loc) · 867 Bytes
/
MODULE.bazel
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
bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "googletest", dev_dependency = True)
local_path_override(
module_name = "googletest",
path = "external/googletest",
)
bazel_dep(name = "re2", dev_dependency = True)
local_path_override(
module_name = "re2",
path = "external/re2",
)
bazel_dep(name = "effcee", dev_dependency = True)
local_path_override(
module_name = "effcee",
path = "external/effcee",
)
bazel_dep(name = "rules_python",
version = "0.34.0")
# https://rules-python.readthedocs.io/en/stable/toolchains.html#library-modules-with-dev-only-python-usage
python = use_extension(
"@rules_python//python/extensions:python.bzl",
"python",
dev_dependency = True
)
python.toolchain(python_version = "3.12",
is_default = True,
ignore_root_user_error = True)