-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
94 lines (84 loc) · 1.81 KB
/
BUILD.bazel
File metadata and controls
94 lines (84 loc) · 1.81 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
load(
"//tools:defaults.bzl",
"extract_tokens",
"markdown_to_html",
"ng_project",
"ng_web_test_suite",
"sass_library",
)
package(default_visibility = ["//visibility:public"])
sass_library(
name = "m3",
srcs = ["_m3-chart.scss"],
deps = [
"//src/material/core/style:sass_utils",
"//src/material/core/tokens:m3_utils",
],
)
sass_library(
name = "m2",
srcs = ["_m2-chart.scss"],
deps = [
"//src/material/core/theming:_inspection",
],
)
sass_library(
name = "theme",
srcs = ["_chart-theme.scss"],
deps = [
":m2",
":m3",
"//src/material/core/theming",
"//src/material/core/theming:_inspection",
"//src/material/core/theming:_validation",
"//src/material/core/tokens:token_utils",
"//src/material/core/typography",
],
)
ng_project(
name = "charts",
srcs = [
"chart.ts",
"chart-types.ts",
"chart-value.pipe.ts",
"charts-module.ts",
"index.ts",
"public-api.ts",
],
assets = ["chart.html"],
deps = [
"//:node_modules/@angular/common",
"//:node_modules/@angular/core",
"//src/material/core",
],
)
ng_project(
name = "unit_test_sources",
testonly = True,
srcs = glob(
["**/*.spec.ts"],
exclude = ["**/*.e2e.spec.ts"],
),
deps = [
":charts",
"//:node_modules/@angular/core",
"//:node_modules/@angular/platform-browser",
"//src/material/core",
],
)
ng_web_test_suite(
name = "unit_tests",
deps = [":unit_test_sources"],
)
markdown_to_html(
name = "overview",
srcs = [":charts.md"],
)
extract_tokens(
name = "tokens",
srcs = [":theme"],
)
filegroup(
name = "source-files",
srcs = glob(["**/*.ts"]),
)