Add support for the closure compiler webservice, using simple optimizations.

Using this build mode, on a lite build, we save approximately 15% after
gzip. However, this build method can not be used on full builds, as they
exceed the 1000kb limit on the closure compiler webservice. 


git-svn-id: http://svn.openlayers.org/trunk/openlayers@11443 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2011-02-24 22:39:40 +00:00
parent 07e34672b5
commit 8d2bbfe28f
2 changed files with 34 additions and 3 deletions

View File

@@ -12,6 +12,11 @@ def build(config_file = None, output_file = None, options = None):
have_compressor.append("jsmin")
except ImportError:
print "No jsmin"
try:
import closure_ws
have_compressor.append("closure_ws")
except ImportError:
print "No closure_ws"
try:
import minimize
@@ -39,14 +44,14 @@ def build(config_file = None, output_file = None, options = None):
print "Merging libraries."
merged = mergejs.run(sourceDirectory, None, configFilename)
print "Compressing using %s" % use_compressor
if use_compressor == "jsmin":
print "Compressing using jsmin."
minimized = jsmin.jsmin(merged)
elif use_compressor == "minimize":
print "Compressing using minimize."
minimized = minimize.minimize(merged)
elif use_compressor == "closure_ws":
minimized = closure_ws.minimize(merged)
else: # fallback
print "Not compressing."
minimized = merged
print "Adding license file."
minimized = file("license.txt").read() + minimized