/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components-examples/material/sort/BUILD.bazel
54 строки
1 KB
Kristiyan Kostadinov
feat(material/sort): add content projection slot for custom icon (#32016)
08 окт 2025, 18:27
Не верифицирован
08 окт 2025, 18:27
71d5907
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "ng_project", "ng_web_test_suite") package(default_visibility = ["//visibility:public"]) ng_project( name = "sort", srcs = glob( ["**/*.ts"], exclude = ["**/*.spec.ts"], ), assets = glob([ "**/*.html", "**/*.css", ]), deps = [ "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", "//:node_modules/@types/jasmine", "//src/cdk/testing", "//src/cdk/testing/testbed", "//src/material/icon", "//src/material/sort", "//src/material/sort/testing", ], ) filegroup( name = "source-files", srcs = glob([ "**/*.html", "**/*.css", "**/*.ts", ]), ) ng_project( name = "unit_tests_lib", testonly = True, srcs = glob(["**/*.spec.ts"]), deps = [ ":sort", "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", "//src/cdk/testing", "//src/cdk/testing/testbed", "//src/material/sort", "//src/material/sort/testing", ], ) ng_web_test_suite( name = "unit_tests", deps = [":unit_tests_lib"], )