Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Unified Diff: tools/grit/grit/tool/build.py

Issue 2179033002: Strip comments and whitespace from javascript resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert changes to screen.js (no longer needed for this CL) Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/grit/grit/node/include.py ('k') | tools/grit/grit_rule.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/grit/grit/tool/build.py
diff --git a/tools/grit/grit/tool/build.py b/tools/grit/grit/tool/build.py
index 51d33415b99cf9c4003f1eaef33770cb373137b1..853dfc897d425f7da2876b82d60e9652eeac51a5 100755
--- a/tools/grit/grit/tool/build.py
+++ b/tools/grit/grit/tool/build.py
@@ -17,6 +17,7 @@ import sys
from grit import grd_reader
from grit import shortcuts
from grit import util
+from grit.format import minifier
from grit.node import include
from grit.node import message
from grit.node import structure
@@ -126,6 +127,12 @@ Options:
generated will depend on a stampfile instead of the first
output in the input .grd file.
+ --js-minifier A command to run the Javascript minifier. If not set then
+ Javascript won't be minified. The command should read the
+ original Javascript from standard input, and output the
+ minified Javascript to standard output. A non-zero exit
+ status will be taken as indicating failure.
+
Conditional inclusion of resources only affects the output of files which
control which resources get linked into a binary, e.g. it affects .rc files
meant for compilation but it does not affect resource header files (that define
@@ -148,6 +155,7 @@ are exported to translation interchange files (e.g. XMB files), etc.
output_all_resource_defines = None
write_only_new = False
depend_on_stamp = False
+ js_minifier = None
replace_ellipsis = True
(own_opts, args) = getopt.getopt(args, 'a:o:D:E:f:w:t:h:',
('depdir=','depfile=','assert-file-list=',
@@ -155,6 +163,7 @@ are exported to translation interchange files (e.g. XMB files), etc.
'no-output-all-resource-defines',
'no-replace-ellipsis',
'depend-on-stamp',
+ 'js-minifier=',
'write-only-new='))
for (key, val) in own_opts:
if key == '-a':
@@ -195,6 +204,8 @@ are exported to translation interchange files (e.g. XMB files), etc.
write_only_new = val != '0'
elif key == '--depend-on-stamp':
depend_on_stamp = True
+ elif key == '--js-minifier':
+ js_minifier = val
if len(args):
print 'This tool takes no tool-specific arguments.'
@@ -214,6 +225,9 @@ are exported to translation interchange files (e.g. XMB files), etc.
whitelist_contents = util.ReadFile(whitelist_filename, util.RAW_TEXT)
self.whitelist_names.update(whitelist_contents.strip().split('\n'))
+ if js_minifier:
+ minifier.SetJsMinifier(js_minifier)
+
self.write_only_new = write_only_new
self.res = grd_reader.Parse(opts.input,
« no previous file with comments | « tools/grit/grit/node/include.py ('k') | tools/grit/grit_rule.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698