2023-04-27 00:10:36 +03:00
|
|
|
load("@prelude//toolchains:genrule.bzl", "system_genrule_toolchain")
|
2023-04-28 00:39:12 +03:00
|
|
|
load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain", "system_python_toolchain")
|
2023-04-27 01:14:23 +03:00
|
|
|
load("@prelude-nri//elm:toolchain.bzl", "elm_toolchain")
|
2023-05-01 22:44:56 +03:00
|
|
|
load("@prelude-nri//node:toolchain.bzl", "node_toolchain")
|
2023-04-27 00:10:36 +03:00
|
|
|
|
|
|
|
system_genrule_toolchain(
|
|
|
|
name = "genrule",
|
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
)
|
2023-04-27 01:14:23 +03:00
|
|
|
|
2023-04-28 00:39:12 +03:00
|
|
|
system_python_toolchain(
|
|
|
|
name = "python",
|
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
)
|
|
|
|
|
|
|
|
system_python_bootstrap_toolchain(
|
|
|
|
name = "python_bootstrap",
|
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
)
|
|
|
|
|
2023-04-27 01:14:23 +03:00
|
|
|
elm_toolchain(
|
|
|
|
name = "elm",
|
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
)
|
2023-05-01 22:44:56 +03:00
|
|
|
|
|
|
|
node_toolchain(
|
|
|
|
name = "node",
|
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
)
|