/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/toolchains/BUILD.bazel
32 строки
989 B
Alan Agius
build: update `aspect_rules_js` to `3.0.2`
09 мар 2026, 17:24
Не верифицирован
09 мар 2026, 17:24
e59f77a
Код
Авторство
О чём код?
load("@rules_cc//cc:defs.bzl", "cc_toolchain") load(":dummy_cc_toolchain.bzl", "dummy_cc_toolchain_config") # This defines a dummy C++ toolchain for Windows. # Without this, the build fails with "Unable to find a CC toolchain using toolchain resolution". dummy_cc_toolchain_config(name = "dummy_cc_toolchain_config") filegroup(name = "empty") cc_toolchain( name = "dummy_cc_toolchain", all_files = ":empty", compiler_files = ":empty", dwp_files = ":empty", linker_files = ":empty", objcopy_files = ":empty", strip_files = ":empty", supports_param_files = 0, toolchain_config = ":dummy_cc_toolchain_config", toolchain_identifier = "dummy_cc_toolchain", ) toolchain( name = "dummy_cc_windows_no_exec_toolchain", exec_compatible_with = [], target_compatible_with = [ "@platforms//os:windows", "@platforms//cpu:x86_64", ], toolchain = ":dummy_cc_toolchain", toolchain_type = "@rules_cc//cc:toolchain_type", )