-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
113 lines (102 loc) · 2.07 KB
/
BUILD.bazel
File metadata and controls
113 lines (102 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
load(
"//tools:defaults.bzl",
"extract_tokens",
"markdown_to_html",
"ng_project",
"ng_web_test_suite",
"sass_binary",
"sass_library",
)
package(default_visibility = ["//visibility:public"])
sass_library(
name = "m3",
srcs = [
"_m3-card.scss",
],
deps = [
"//src/material/core/style:sass_utils",
"//src/material/core/tokens:m3_utils",
],
)
sass_library(
name = "m2",
srcs = [
"_m2-card.scss",
],
deps = [
"//src/material/core/style:elevation",
"//src/material/core/style:sass_utils",
"//src/material/core/theming:_inspection",
"//src/material/core/tokens:m2_utils",
],
)
sass_library(
name = "theme",
srcs = [
"_card-theme.scss",
],
deps = [
":m2",
"//src/material/core/style:sass_utils",
"//src/material/core/theming",
"//src/material/core/theming:_inspection",
"//src/material/core/theming:_validation",
"//src/material/core/tokens:token_utils",
"//src/material/core/typography",
],
)
sass_binary(
name = "css",
src = "card.scss",
layer = "angular-material",
deps = [
":m2",
"//src/material/core/tokens:token_utils",
],
)
ng_project(
name = "card",
srcs = [
"card.ts",
"card-module.ts",
"index.ts",
"public-api.ts",
],
assets = [
"card-header.html",
"card-title-group.html",
"card.html",
":css",
],
deps = [
"//:node_modules/@angular/core",
"//src/material/core",
],
)
ng_project(
name = "unit_test_sources",
testonly = True,
srcs = glob(
["**/*.spec.ts"],
),
deps = [
":card",
"//:node_modules/@angular/core",
],
)
ng_web_test_suite(
name = "unit_tests",
deps = [":unit_test_sources"],
)
markdown_to_html(
name = "overview",
srcs = [":card.md"],
)
extract_tokens(
name = "tokens",
srcs = [":theme"],
)
filegroup(
name = "source-files",
srcs = glob(["**/*.ts"]),
)