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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
#!/usr/bin/env python
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import argparse
import itertools
import json
import os
import glob
import platform
import re
import shutil
import sys
import tempfile
_HERE_PATH = os.path.dirname(__file__)
_SRC_PATH = os.path.normpath(os.path.join(_HERE_PATH, '..', '..', '..'))
_CWD = os.getcwd() # NOTE(dbeam): this is typically out/<gn_name>/.
sys.path.append(os.path.join(_SRC_PATH, 'third_party', 'node'))
import node
import node_modules
_RESOURCES_PATH = os.path.join(
_SRC_PATH, 'ui', 'webui', 'resources', '').replace('\\', '/')
_CR_ELEMENTS_PATH = os.path.join(
_RESOURCES_PATH, 'cr_elements', '').replace('\\', '/')
_CR_COMPONENTS_PATH = os.path.join(
_RESOURCES_PATH, 'cr_components', '').replace('\\', '/')
_CSS_RESOURCES_PATH = os.path.join(
_RESOURCES_PATH, 'css', '').replace('\\', '/')
_HTML_RESOURCES_PATH = os.path.join(
_RESOURCES_PATH, 'html', '').replace('\\', '/')
_JS_RESOURCES_PATH = os.path.join(_RESOURCES_PATH, 'js', '').replace('\\', '/')
_IMAGES_RESOURCES_PATH = os.path.join(
_RESOURCES_PATH, 'images', '').replace('\\', '/')
_POLYMER_PATH = os.path.join(
_SRC_PATH, 'third_party', 'polymer', 'v1_0', 'components-chromium',
'').replace('\\', '/')
# These files are already combined and minified.
_BASE_EXCLUDES = [
# Excludes applying only to Polymer 2.
'chrome://resources/html/polymer.html',
'chrome://resources/polymer/v1_0/polymer/polymer.html',
'chrome://resources/polymer/v1_0/polymer/polymer-micro.html',
'chrome://resources/polymer/v1_0/polymer/polymer-mini.html',
'chrome://resources/js/load_time_data.js'
]
for excluded_file in [
# Common excludes for both Polymer 2 and 3.
'resources/polymer/v1_0/web-animations-js/web-animations-next-lite.min.js',
'resources/css/roboto.css',
'resources/css/text_defaults.css',
'resources/css/text_defaults_md.css',
'resources/mojo/mojo/public/js/mojo_bindings_lite.html',
'resources/mojo/mojo/public/mojom/base/time.mojom.html',
'resources/mojo/mojo/public/mojom/base/time.mojom-lite.js',
'resources/mojo/chromeos/services/network_config/public/mojom/network_types.mojom.html',
'resources/mojo/services/network/public/mojom/ip_address.mojom.html',
# Excludes applying only to Polymer 3.
'resources/polymer/v3_0/polymer/polymer_bundled.min.js',
'resources/js/load_time_data.m.js',
]:
# Exclude both the chrome://resources form and the scheme-relative form for
# files used in Polymer 3.
_BASE_EXCLUDES.append("chrome://" + excluded_file)
_BASE_EXCLUDES.append("//" + excluded_file)
_VULCANIZE_BASE_ARGS = [
'--inline-css',
'--inline-scripts',
'--rewrite-urls-in-templates',
'--strip-comments',
]
_URL_MAPPINGS = []
for (redirect_url, file_path) in [
('resources/cr_components/', _CR_COMPONENTS_PATH),
('resources/cr_elements/', _CR_ELEMENTS_PATH),
('resources/css/', _CSS_RESOURCES_PATH),
('resources/html/', _HTML_RESOURCES_PATH),
('resources/js/', _JS_RESOURCES_PATH),
('resources/polymer/v1_0/', _POLYMER_PATH),
('resources/images/', _IMAGES_RESOURCES_PATH),
]:
# Redirect both the chrome://resources form and the scheme-relative form.
_URL_MAPPINGS.append(('chrome://' + redirect_url, file_path))
_URL_MAPPINGS.append(('//' + redirect_url, file_path))
_VULCANIZE_REDIRECT_ARGS = list(itertools.chain.from_iterable(map(
lambda m: ['--redirect', '%s|%s' % (m[0], m[1])], _URL_MAPPINGS)))
def _undo_mapping(mappings, url):
for (redirect_url, file_path) in mappings:
if url.startswith(redirect_url):
return url.replace(redirect_url, file_path + os.sep, 1)
# TODO(dbeam): can we make this stricter?
return url
def _request_list_path(out_path, host):
return os.path.join(out_path, host + '_requestlist.txt')
# Get a list of all files that were bundled with polymer-bundler and update the
# depfile accordingly such that Ninja knows when to re-trigger.
def _update_dep_file(in_folder, args, manifest):
in_path = os.path.join(_CWD, in_folder)
# Gather the dependencies of all bundled root files.
request_list = []
for out_file in manifest:
request_list += manifest[out_file]
# Add a slash in front of every dependency that is not a chrome:// URL, so
# that we can map it to the correct source file path below.
request_list = map(
lambda dep: '/' + dep if not (dep.startswith('chrome://') or dep.startswith('//')) else dep,
request_list)
# Undo the URL mappings applied by vulcanize to get file paths relative to
# current working directory.
url_mappings = _URL_MAPPINGS + [
('/', os.path.relpath(in_path, _CWD)),
('chrome://%s/' % args.host, os.path.relpath(in_path, _CWD)),
]
deps = [_undo_mapping(url_mappings, u) for u in request_list]
deps = map(os.path.normpath, deps)
out_file_name = args.html_out_files[0] if args.html_out_files else \
args.js_out_files[0]
with open(os.path.join(_CWD, args.depfile), 'w') as f:
deps_file_header = os.path.join(args.out_folder, out_file_name)
f.write(deps_file_header + ': ' + ' '.join(deps))
# Autogenerate a rollup config file so that we can import the plugin and
# pass it information about the location of the directories and files to exclude
# from the bundle.
def _generate_rollup_config(tmp_out_dir, path_to_plugin, in_path, host,
excludes, gen_dir_relpath):
rollup_config_file = os.path.join(tmp_out_dir, 'rollup.config.js')
excludes_string = '[\'' + '\', \''.join(excludes) + '\']'
with open(rollup_config_file, 'w') as f:
f.write('import plugin from \'%s\';\n' % path_to_plugin.replace(
'\\', '/'))
f.write('export default({\n')
f.write(' plugins: [ plugin(\'%s\', \'%s\', \'%s\', \'%s\', %s) ]\n' % (
_SRC_PATH.replace('\\', '/'),
os.path.join(_CWD, gen_dir_relpath).replace('\\', '/'),
in_path.replace('\\', '/'), host, excludes_string))
f.write('});')
f.close()
return rollup_config_file;
# Create the manifest file from the sourcemap generated by rollup and return the
# list of bundles.
def _generate_manifest_file(tmp_out_dir, in_path, manifest_out_path):
generated_sourcemaps = glob.glob('%s/*.map' % tmp_out_dir)
manifest = {}
output_filenames = []
for sourcemap_file in generated_sourcemaps:
with open(sourcemap_file, 'r') as f:
sourcemap = json.loads(f.read())
if not 'sources' in sourcemap:
raise Exception('rollup could not construct source map')
sources = sourcemap['sources']
replaced_sources = []
for source in sources:
replaced_sources.append(
source.replace('../' + os.path.basename(in_path) + "/", ""))
filename = sourcemap_file[:-len('.map')]
manifest[os.path.basename(filename)] = replaced_sources
output_filenames.append(filename)
with open(manifest_out_path, 'w') as f:
f.write(json.dumps(manifest))
f.close()
return output_filenames
def _bundle_v3(tmp_out_dir, in_path, out_path, manifest_out_path, args,
excludes):
if not os.path.exists(tmp_out_dir):
os.makedirs(tmp_out_dir)
path_to_plugin = os.path.join(
os.path.abspath(_HERE_PATH), 'tools', 'rollup_plugin.js')
rollup_config_file = _generate_rollup_config(tmp_out_dir, path_to_plugin,
in_path, args.host, excludes,
args.gen_dir_relpath)
rollup_args = [os.path.join(in_path, f) for f in args.js_module_in_files]
# Confirm names are as expected. This is necessary to avoid having to replace
# import statements in the generated output files.
# TODO(rbpotter): Is it worth adding import statement replacement to support
# arbitrary names?
bundled_paths = []
for index, js_file in enumerate(args.js_module_in_files):
base_file_name = os.path.basename(js_file)
expected_name = '%s.rollup.js' % base_file_name[:-len('.js')]
assert args.js_out_files[index] == expected_name, \
'Output file corresponding to %s should be named %s' % \
(js_file, expected_name)
bundled_paths.append(os.path.join(tmp_out_dir, expected_name))
# This indicates that rollup is expected to generate a shared chunk file as
# well as one file per module. Set its name using --chunkFileNames. Note:
# Currently, this only supports 2 entry points, which generate 2 corresponding
# outputs and 1 shared output.
if (len(args.js_out_files) == 3):
assert len(args.js_module_in_files) == 2, \
'Expect 2 module entry points for generating 3 outputs'
shared_file_name = args.js_out_files[2]
rollup_args += [ '--chunkFileNames', shared_file_name ]
bundled_paths.append(os.path.join(tmp_out_dir, shared_file_name))
node.RunNode(
[node_modules.PathToRollup()] + rollup_args + [
'--format', 'esm',
'--dir', tmp_out_dir,
'--entryFileNames', '[name].rollup.js',
'--sourcemap', '--sourcemapExcludeSources',
'--config', rollup_config_file,
'--silent',
])
# Create the manifest file from the sourcemaps generated by rollup.
generated_paths = _generate_manifest_file(tmp_out_dir, in_path,
manifest_out_path)
assert len(generated_paths) == len(bundled_paths), \
'unexpected number of bundles - %s - generated by rollup' % \
(len(generated_paths))
for bundled_file in bundled_paths:
with open(bundled_file, 'r') as f:
output = f.read()
assert "<if expr" not in output, \
'Unexpected <if expr> found in bundled output. Check that all ' + \
'input files using such expressions are preprocessed.'
return bundled_paths
def _bundle_v2(tmp_out_dir, in_path, out_path, manifest_out_path, args,
excludes):
in_html_args = []
for f in args.html_in_files:
in_html_args.append(f)
exclude_args = []
for f in excludes:
exclude_args.append('--exclude')
exclude_args.append(f);
node.RunNode(
[node_modules.PathToBundler()] +
_VULCANIZE_BASE_ARGS + _VULCANIZE_REDIRECT_ARGS + exclude_args +
[
'--manifest-out', manifest_out_path,
'--root', in_path,
'--redirect', 'chrome://%s/|%s' % (args.host, in_path + '/'),
'--out-dir', os.path.relpath(tmp_out_dir, _CWD).replace('\\', '/'),
'--shell', args.html_in_files[0],
] + in_html_args)
for index, html_file in enumerate(args.html_in_files):
with open(os.path.join(
os.path.relpath(tmp_out_dir, _CWD), html_file), 'r') as f:
output = f.read()
# Grit includes are not supported, use HTML imports instead.
output = output.replace('<include src="', '<include src-disabled="')
if args.insert_in_head:
assert '<head>' in output
# NOTE(dbeam): polymer-bundler eats <base> tags after processing.
# This undoes that by adding a <base> tag to the (post-processed)
# generated output.
output = output.replace('<head>', '<head>' + args.insert_in_head)
# Open file again with 'w' such that the previous contents are
# overwritten.
with open(os.path.join(
os.path.relpath(tmp_out_dir, _CWD), html_file), 'w') as f:
f.write(output)
f.close()
bundled_paths = []
for index, html_in_file in enumerate(args.html_in_files):
bundled_paths.append(
os.path.join(tmp_out_dir, args.html_out_files[index]))
js_out_file = args.js_out_files[index]
# Run crisper to separate the JS from the HTML file.
node.RunNode([node_modules.PathToCrisper(),
'--source', os.path.join(tmp_out_dir, html_in_file),
'--script-in-head', 'false',
'--html', bundled_paths[index],
'--js', os.path.join(tmp_out_dir, js_out_file)])
return bundled_paths
def _optimize(in_folder, args):
in_path = os.path.normpath(os.path.join(_CWD, in_folder)).replace('\\', '/')
out_path = os.path.join(_CWD, args.out_folder).replace('\\', '/')
manifest_out_path = _request_list_path(out_path, args.host)
tmp_out_dir = tempfile.mkdtemp(dir=out_path).replace('\\', '/')
excludes = _BASE_EXCLUDES + [
# This file is dynamically created by C++. Need to specify an exclusion
# URL for both the relative URL and chrome:// URL syntax.
'strings.js',
'strings.m.js',
'chrome://%s/strings.js' % args.host,
'chrome://%s/strings.m.js' % args.host,
]
excludes.extend(args.exclude or [])
try:
if args.js_module_in_files:
pcb_out_paths = [os.path.join(tmp_out_dir, f) for f in args.js_out_files]
bundled_paths = _bundle_v3(tmp_out_dir, in_path, out_path,
manifest_out_path, args, excludes)
else:
# Ensure Polymer 2 and Polymer 3 request lists don't collide.
manifest_out_path = _request_list_path(out_path, args.host + '-v2')
pcb_out_paths = [os.path.join(out_path, f) for f in args.html_out_files]
bundled_paths = _bundle_v2(tmp_out_dir, in_path, out_path,
manifest_out_path, args, excludes)
# Run polymer-css-build.
node.RunNode([node_modules.PathToPolymerCssBuild()] +
['--polymer-version', '2'] +
['--no-inline-includes', '-f'] +
bundled_paths + ['-o'] + pcb_out_paths)
# Pass the JS files through Uglify and write the output to its final
# destination.
for index, js_out_file in enumerate(args.js_out_files):
node.RunNode([node_modules.PathToTerser(),
os.path.join(tmp_out_dir, js_out_file),
'--comments', '/Copyright|license|LICENSE|\<\/?if/',
'--output', os.path.join(out_path, js_out_file)])
finally:
shutil.rmtree(tmp_out_dir)
return manifest_out_path
def main(argv):
parser = argparse.ArgumentParser()
parser.add_argument('--depfile', required=True)
parser.add_argument('--exclude', nargs='*')
parser.add_argument('--host', required=True)
parser.add_argument('--html_in_files', nargs='*')
parser.add_argument('--html_out_files', nargs='*')
parser.add_argument('--input', required=True)
parser.add_argument('--insert_in_head')
parser.add_argument('--js_out_files', nargs='*', required=True)
parser.add_argument('--out_folder', required=True)
parser.add_argument('--js_module_in_files', nargs='*')
parser.add_argument('--out-manifest')
parser.add_argument('--gen_dir_relpath', default='gen', help='Path of the '
'gen directory relative to the out/. If running in the default '
'toolchain, the path is gen, otherwise $toolchain_name/gen')
args = parser.parse_args(argv)
# Either JS module input files (for Polymer 3) or HTML input and output files
# (for Polymer 2) should be provided.
is_polymer2 = bool(args.html_out_files) and bool(args.html_in_files)
is_polymer3 = bool(args.js_module_in_files)
assert(is_polymer2 != is_polymer3)
# NOTE(dbeam): on Windows, GN can send dirs/like/this. When joined, you might
# get dirs/like/this\file.txt. This looks odd to windows. Normalize to right
# the slashes.
args.depfile = os.path.normpath(args.depfile)
args.input = os.path.normpath(args.input)
args.out_folder = os.path.normpath(args.out_folder)
manifest_out_path = _optimize(args.input, args)
# Prior call to _optimize() generated an output manifest file, containing
# information about all files that were bundled. Grab it from there.
manifest = json.loads(open(manifest_out_path, 'r').read())
# polymer-bundler reports any missing files in the output manifest, instead of
# directly failing. Ensure that no such files were encountered.
if '_missing' in manifest:
raise Exception(
'polymer-bundler could not find files for the following URLs:\n' +
'\n'.join(manifest['_missing']))
# Output a manifest file that will be used to auto-generate a grd file later.
if args.out_manifest:
manifest_data = {}
manifest_data['base_dir'] = '%s' % args.out_folder
if (is_polymer3):
manifest_data['files'] = manifest.keys()
else:
manifest_data['files'] = args.html_out_files + args.js_out_files
manifest_file = open(
os.path.normpath(os.path.join(_CWD, args.out_manifest)), 'wb')
json.dump(manifest_data, manifest_file)
_update_dep_file(args.input, args, manifest)
if __name__ == '__main__':
main(sys.argv[1:])
|