mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-21 19:20:07 +00:00
25b4e42ead
* Roll external/googletest/ 5bcb2d78a..ff233bdd4 (3 commits)5bcb2d78a1...ff233bdd4c
Created with: roll-dep external/googletest * Roll external/abseil_cpp/ 52fad5aa0..bd0c9c58c (11 commits)52fad5aa02...bd0c9c58ca
Created with: roll-dep external/abseil_cpp --------- Co-authored-by: GitHub Actions[bot] <>
34 lines
867 B
Plaintext
34 lines
867 B
Plaintext
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)
|