blob: e66eda2d1bb9414459495585bd7bdb1b8b949e38 [file] [log] [blame] [edit]
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load("//nodejs/private:nodejs_toolchains_repo.bzl", "PLATFORMS")
load("//nodejs/private:user_build_settings.bzl", "user_args")
package(default_visibility = ["//visibility:public"])
exports_files([
"index.for_docs.bzl",
"providers.bzl",
])
bzl_library(
name = "index.for_docs",
srcs = glob(["*.bzl"]) + ["@bazel_tools//tools:bzl_srcs"],
deps = [
"//nodejs/private:bzl",
"//nodejs/private/providers:bzl",
"@bazel_skylib//lib:paths",
],
)
# This is the target rule authors should put in their "toolchains"
# attribute in order to get a node interpreter for the correct
# platform.
# See https://docs.bazel.build/versions/main/toolchains.html#writing-rules-that-use-toolchains
toolchain_type(name = "toolchain_type")
[
platform(
name = key,
constraint_values = values.compatible_with,
)
for key, values in PLATFORMS.items()
]
# Default arguments/flags that are passed to nodejs in all nodejs_binary and
# nodejs_test targets. Can be overwritten by settings
# --@rules_nodejs//nodejs:default_args="--flag1 --flag2"
user_args(
name = "default_args",
build_setting_default = "--preserve-symlinks",
)