mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 00:20:08 +01:00
PR-URL: https://github.com/nodejs/node/pull/60111 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
21 lines
630 B
Plaintext
21 lines
630 B
Plaintext
module(
|
|
name = "v8",
|
|
version = "0.0.0",
|
|
)
|
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
|
bazel_dep(name = "rules_cc", version = "0.1.2")
|
|
bazel_dep(name = "rules_python", version = "1.0.0")
|
|
bazel_dep(name = "platforms", version = "0.0.11")
|
|
bazel_dep(name = "abseil-cpp", version = "20250814.0")
|
|
bazel_dep(name = "highway", version = "1.2.0")
|
|
|
|
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
|
|
pip.parse(
|
|
hub_name = "v8_python_deps",
|
|
python_version = "3.11",
|
|
requirements_lock = "//:bazel/requirements.txt",
|
|
extra_pip_args = ["--require-hashes"],
|
|
)
|
|
use_repo(pip, "v8_python_deps")
|