Index: chrome/browser/resources/vulcanize.py |
diff --git a/chrome/browser/resources/md_downloads/vulcanize.py b/chrome/browser/resources/vulcanize.py |
similarity index 58% |
rename from chrome/browser/resources/md_downloads/vulcanize.py |
rename to chrome/browser/resources/vulcanize.py |
index 673b0d581f93558a1ea56a20777ba23b34667c1d..bf67b6b63584185b91fe4e6626e26570b491089f 100755 |
--- a/chrome/browser/resources/md_downloads/vulcanize.py |
+++ b/chrome/browser/resources/vulcanize.py |
@@ -1,5 +1,5 @@ |
#!/usr/bin/env python |
-# Copyright 2015 The Chromium Authors. All rights reserved. |
+# 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. |
@@ -8,14 +8,11 @@ import subprocess |
import sys |
import tempfile |
+# See //docs/vulcanize.md for instructions on installing prerequistes and |
+# running the vulcanize build. |
_HERE_PATH = os.path.join(os.path.dirname(__file__)) |
- |
-_HTML_IN_PATH = os.path.join(_HERE_PATH, 'downloads.html') |
-_HTML_OUT_PATH = os.path.join(_HERE_PATH, 'vulcanized.html') |
-_JS_OUT_PATH = os.path.join(_HERE_PATH, 'crisper.js') |
- |
-_SRC_PATH = os.path.normpath(os.path.join(_HERE_PATH, '..', '..', '..', '..')) |
+_SRC_PATH = os.path.normpath(os.path.join(_HERE_PATH, '..', '..', '..')) |
_RESOURCES_PATH = os.path.join(_SRC_PATH, 'ui', 'webui', 'resources') |
@@ -23,11 +20,10 @@ _CR_ELEMENTS_PATH = os.path.join(_RESOURCES_PATH, 'cr_elements') |
_CSS_RESOURCES_PATH = os.path.join(_RESOURCES_PATH, 'css') |
_HTML_RESOURCES_PATH = os.path.join(_RESOURCES_PATH, 'html') |
_JS_RESOURCES_PATH = os.path.join(_RESOURCES_PATH, 'js') |
- |
_POLYMER_PATH = os.path.join( |
_SRC_PATH, 'third_party', 'polymer', 'v1_0', 'components-chromium') |
-_VULCANIZE_ARGS = [ |
+_VULCANIZE_BASE_ARGS = [ |
'--exclude', 'crisper.js', |
# These files are already combined and minified. |
@@ -43,7 +39,6 @@ _VULCANIZE_ARGS = [ |
'--inline-css', |
'--inline-scripts', |
- '--redirect', 'chrome://downloads/|%s' % _HERE_PATH, |
'--redirect', 'chrome://resources/cr_elements/|%s' % _CR_ELEMENTS_PATH, |
'--redirect', 'chrome://resources/css/|%s' % _CSS_RESOURCES_PATH, |
'--redirect', 'chrome://resources/html/|%s' % _HTML_RESOURCES_PATH, |
@@ -53,7 +48,9 @@ _VULCANIZE_ARGS = [ |
'--strip-comments', |
] |
-def main(): |
+ |
+def vulcanize(directory, host, html_in_file, html_out_file, js_out_file, |
Dan Beam
2016/08/10 18:17:41
nit: this is not public-ish to those that import t
Dan Beam
2016/08/10 18:17:41
can you name some or all of these params?
tsergeant
2016/08/11 01:28:26
I'm not sure what you mean? They are named?
Dan Beam
2016/08/11 02:29:49
sorry, keyword=arguments
https://docs.python.org/3
tsergeant
2016/08/11 03:28:00
Right, got it. I've changed the output files to ke
|
+ extra_args = []): |
Dan Beam
2016/08/10 18:17:41
python style guide asks you to use something like
tsergeant
2016/08/11 01:28:26
Done.
|
def _run_cmd(cmd_parts, stdout=None): |
cmd = "'" + "' '".join(cmd_parts) + "'" |
process = subprocess.Popen( |
@@ -66,7 +63,16 @@ def main(): |
return stdout |
- output = _run_cmd(['vulcanize'] + _VULCANIZE_ARGS + [_HTML_IN_PATH]) |
+ print 'Vulcanizing %s' % directory |
+ |
+ target_path = os.path.join(_HERE_PATH, directory) |
+ html_in_path = os.path.join(target_path, html_in_file) |
+ html_out_path = os.path.join(target_path, html_out_file) |
+ js_out_path = os.path.join(target_path, js_out_file) |
+ |
+ output = _run_cmd(['vulcanize'] + _VULCANIZE_BASE_ARGS + extra_args + |
+ ['--redirect', 'chrome://%s/|%s' % (host, target_path), |
+ html_in_path]) |
with tempfile.NamedTemporaryFile(mode='wt+', delete=False) as tmp: |
tmp.write(output.replace( |
@@ -75,11 +81,28 @@ def main(): |
try: |
_run_cmd(['crisper', '--source', tmp.name, |
'--script-in-head', 'false', |
- '--html', _HTML_OUT_PATH, |
- '--js', _JS_OUT_PATH]) |
+ '--html', html_out_path, |
+ '--js', js_out_path]) |
+ |
+ # TODO(tsergeant): Remove when JS resources are minified by default: |
+ # crbug.com/619091. |
+ _run_cmd(['uglifyjs', js_out_path, |
tsergeant
2016/08/10 06:40:34
Uglify-with-beautify is...a little strange. Stripp
Dan Beam
2016/08/10 18:17:41
I don't really care what we use, but either way we
|
+ '--beautify', 'indent-level=2,quote_style=3', |
+ '--comments', '/Copyright|license|LICENSE|\<\/?if/', |
+ '--output', js_out_path]) |
finally: |
os.remove(tmp.name) |
+def main(): |
+ vulcanize('md_downloads', 'downloads', 'downloads.html', 'vulcanized.html', |
+ 'crisper.js') |
+ |
+ # Already loaded by history.html: |
+ history_extra_args = ['--exclude', 'chrome://resources/html/util.html', |
+ '--exclude', 'chrome://history/constants.html'] |
+ vulcanize('md_history', 'history', 'app.html', 'app.vulcanized.html', |
+ 'app.crisper.js', history_extra_args) |
+ |
Dan Beam
2016/08/10 18:17:41
\n\n between top-levels
tsergeant
2016/08/11 01:28:26
Done.
|
if __name__ == '__main__': |
main() |