PR-URL: https://github.com/nodejs/node/pull/58070 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
20 lines
588 B
Python
20 lines
588 B
Python
module(
|
|
name = "v8",
|
|
version = "0.0.0",
|
|
)
|
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
|
bazel_dep(name = "rules_python", version = "1.0.0")
|
|
bazel_dep(name = "platforms", version = "0.0.11")
|
|
bazel_dep(name = "abseil-cpp", version = "20240722.0.bcr.2")
|
|
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")
|