Files
filament/third_party/spirv-tools/MODULE.bazel
Mathias Agopian d7b10bdd3b update glslang, spirv-tools and spirv-opt to their latest version (#9845)
* update spirv-cross to a0fba56

* update spirv-tools to v2026.1

* update spirv-headers to 04f10f6

* update glslang to 16.2.0
2026-03-27 16:35:56 -07:00

36 lines
915 B
Python

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 = "1.5.1")
# 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)
bazel_dep(name = "rules_cc", version = "0.1.1")