-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
78 lines (65 loc) · 1.34 KB
/
BUILD.bazel
File metadata and controls
78 lines (65 loc) · 1.34 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
load("//tools:defaults.bzl", "sass_library")
package(default_visibility = ["//visibility:public"])
sass_library(
name = "button_common",
srcs = ["_button-common.scss"],
deps = [":vendor_prefixes"],
)
sass_library(
name = "checkbox_common",
srcs = ["_checkbox-common.scss"],
)
sass_library(
name = "elevation",
srcs = ["_elevation.scss"],
deps = [
":sass_utils",
":variables",
],
)
sass_library(
name = "layout_common",
srcs = ["_layout-common.scss"],
)
sass_library(
name = "list_common",
srcs = ["_list-common.scss"],
)
sass_library(
name = "menu_common",
srcs = ["_menu-common.scss"],
deps = [
":layout_common",
":list_common",
"//src/cdk:sass_lib",
],
)
sass_library(
name = "private",
srcs = ["_private.scss"],
deps = [
":elevation",
"//src/material/core/theming:_inspection",
"//src/material/core/tokens:m2_utils",
],
)
sass_library(
name = "variables",
srcs = ["_variables.scss"],
)
sass_library(
name = "vendor_prefixes",
srcs = ["_vendor-prefixes.scss"],
)
sass_library(
name = "sass_utils",
srcs = ["_sass-utils.scss"],
)
sass_library(
name = "cascade_layers",
srcs = ["_cascade-layers.scss"],
)
sass_library(
name = "_validation",
srcs = ["_validation.scss"],
)