forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.bzl
174 lines (157 loc) · 5.29 KB
/
packages.bzl
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# List of all components / subpackages.
CDK_PACKAGES = [
"a11y",
"accordion",
"bidi",
"coercion",
"collections",
"drag-drop",
"keycodes",
"layout",
"observers",
"overlay",
"platform",
"portal",
"scrolling",
"stepper",
"table",
"text-field",
"tree",
]
CDK_TARGETS = ["//src/cdk"] + ["//src/cdk/%s" % p for p in CDK_PACKAGES]
CDK_EXPERIMENTAL_PACKAGES = [
"dialog",
"popover-edit",
"scrolling",
]
CDK_EXPERIMENTAL_TARGETS = ["//src/cdk-experimental"] + [
"//src/cdk-experimental/%s" % p
for p in CDK_EXPERIMENTAL_PACKAGES
]
MATERIAL_PACKAGES = [
"autocomplete",
"badge",
"bottom-sheet",
"button",
"button-toggle",
"card",
"checkbox",
"chips",
"core",
"datepicker",
"dialog",
"divider",
"expansion",
"form-field",
"grid-list",
"icon",
"input",
"list",
"menu",
"paginator",
"progress-bar",
"progress-spinner",
"radio",
"select",
"sidenav",
"slide-toggle",
"slider",
"snack-bar",
"sort",
"stepper",
"table",
"tabs",
"toolbar",
"tooltip",
"tree",
]
MATERIAL_TARGETS = ["//src/material:material"] + ["//src/material/%s" % p for p in MATERIAL_PACKAGES]
# List that references the sass libraries for each Material package. This can be used to create
# the theming scss-bundle or to specify dependencies for the all-theme.scss file.
MATERIAL_SCSS_LIBS = [
"//src/material/%s:%s_scss_lib" % (p, p.replace("-", "_"))
for p in MATERIAL_PACKAGES
]
MATERIAL_EXPERIMENTAL_PACKAGES = [
"mdc-button",
"mdc-card",
"mdc-checkbox",
"mdc-chips",
"mdc-tabs",
"mdc-helpers",
"mdc-menu",
"mdc-radio",
"mdc-slide-toggle",
"mdc-slider",
"popover-edit",
]
MATERIAL_EXPERIMENTAL_TARGETS = ["//src/material-experimental"] + [
"//src/material-experimental/%s" % p
for p in MATERIAL_EXPERIMENTAL_PACKAGES
]
MATERIAL_EXPERIMENTAL_SCSS_LIBS = [
"//src/material-experimental/%s:%s_scss_lib" % (p, p.replace("-", "_"))
for p in MATERIAL_EXPERIMENTAL_PACKAGES
]
# Each individual package uses a placeholder for the version of Angular to ensure they're
# all in-sync. This map is passed to each ng_package rule to stamp out the appropriate
# version for the placeholders.
ANGULAR_PACKAGE_VERSION = "^8.0.0 || ^9.0.0-0"
MDC_PACKAGE_VERSION = "^1.1.0"
VERSION_PLACEHOLDER_REPLACEMENTS = {
"0.0.0-MDC": MDC_PACKAGE_VERSION,
"0.0.0-NG": ANGULAR_PACKAGE_VERSION,
}
# Base rollup globals for everything in the repo.
ROLLUP_GLOBALS = {
"@angular/cdk": "ng.cdk",
"@angular/cdk-experimental": "ng.cdkExperimental",
"@angular/google-maps": "ng.googleMaps",
"@angular/material": "ng.material",
"@angular/material-experimental": "ng.materialExperimental",
"@angular/youtube-player": "ng.youtubePlayer",
"moment": "moment",
"tslib": "tslib",
}
# Rollup globals for cdk subpackages in the form of, e.g., {"@angular/cdk/table": "ng.cdk.table"}
ROLLUP_GLOBALS.update({
"@angular/cdk/%s" % p: "ng.cdk.%s" % p
for p in CDK_PACKAGES
})
# Rollup globals for cdk subpackages in the form of, e.g.,
# {"@angular/cdk-experimental/scrolling": "ng.cdkExperimental.scrolling"}
ROLLUP_GLOBALS.update({
"@angular/cdk-experimental/%s" % p: "ng.cdkExperimental.%s" % p
for p in CDK_EXPERIMENTAL_PACKAGES
})
# Rollup globals for material subpackages, e.g., {"@angular/material/list": "ng.material.list"}
ROLLUP_GLOBALS.update({
"@angular/material/%s" % p: "ng.material.%s" % p
for p in MATERIAL_PACKAGES
})
# Rollup globals for material experiemental subpackages, e.g., {"@angular/material-experimental/list": "ng.materialExperimental.list"}
ROLLUP_GLOBALS.update({
"@angular/material-experiemntal/%s" % p: "ng.materialExperimental.%s" % p
for p in MATERIAL_EXPERIMENTAL_PACKAGES
})
# UMD bundles for Angular packages and subpackges we depend on for development and testing.
ANGULAR_LIBRARY_UMDS = [
"@npm//:node_modules/@angular/animations/bundles/animations-browser.umd.js",
"@npm//:node_modules/@angular/animations/bundles/animations.umd.js",
"@npm//:node_modules/@angular/common/bundles/common-http-testing.umd.js",
"@npm//:node_modules/@angular/common/bundles/common-http.umd.js",
"@npm//:node_modules/@angular/common/bundles/common-testing.umd.js",
"@npm//:node_modules/@angular/common/bundles/common.umd.js",
"@npm//:node_modules/@angular/compiler/bundles/compiler-testing.umd.js",
"@npm//:node_modules/@angular/compiler/bundles/compiler.umd.js",
"@npm//:node_modules/@angular/core/bundles/core-testing.umd.js",
"@npm//:node_modules/@angular/core/bundles/core.umd.js",
"@npm//:node_modules/@angular/elements/bundles/elements.umd.js",
"@npm//:node_modules/@angular/forms/bundles/forms.umd.js",
"@npm//:node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js",
"@npm//:node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js",
"@npm//:node_modules/@angular/platform-browser/bundles/platform-browser-animations.umd.js",
"@npm//:node_modules/@angular/platform-browser/bundles/platform-browser-testing.umd.js",
"@npm//:node_modules/@angular/platform-browser/bundles/platform-browser.umd.js",
"@npm//:node_modules/@angular/router/bundles/router.umd.js",
]