/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/tree/BUILD.bazel
65 строк
1 KB
Joey Perrott
build: rename defaults2.bzl to defaults.bzl (#63383)
26 авг 2025, 01:45
26 авг 2025, 01:45
2fcafb6
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "ts_project") package(default_visibility = ["//visibility:public"]) ts_project( name = "util_lib", srcs = ["util.ts"], tsconfig = "//modules/benchmarks:tsconfig_e2e", deps = ["//modules/benchmarks/src:util_lib"], ) ts_project( name = "test_utils_lib", testonly = 1, srcs = ["test_utils.ts"], tsconfig = "//modules/benchmarks:tsconfig_e2e", deps = [ "//modules:node_modules/protractor", "//modules/utilities", ], ) ts_project( name = "perf_tests_lib", testonly = 1, srcs = ["tree.perf-spec.ts"], tsconfig = "//modules/benchmarks:tsconfig_e2e", deps = [ ":test_utils_lib", "//modules:node_modules/protractor", ], ) ts_project( name = "e2e_tests_lib", testonly = 1, srcs = ["tree.e2e-spec.ts"], tsconfig = "//modules/benchmarks:tsconfig_e2e", deps = [ ":test_utils_lib", "//modules:node_modules/protractor", ], ) ts_project( name = "detect_changes_perf_tests_lib", testonly = 1, srcs = ["tree_detect_changes.perf-spec.ts"], tsconfig = "//modules/benchmarks:tsconfig_e2e", deps = [ ":test_utils_lib", "//modules:node_modules/protractor", ], ) ts_project( name = "detect_changes_e2e_tests_lib", testonly = 1, srcs = ["tree_detect_changes.e2e-spec.ts"], tsconfig = "//modules/benchmarks:tsconfig_e2e", deps = [ ":test_utils_lib", "//modules:node_modules/protractor", ], )