| Index: chrome/third_party/jstemplate/compile.sh
|
| ===================================================================
|
| --- chrome/third_party/jstemplate/compile.sh (revision 17821)
|
| +++ chrome/third_party/jstemplate/compile.sh (working copy)
|
| @@ -2,11 +2,13 @@
|
| # A shell script that combines the javascript files needed by jstemplate into
|
| # a single file.
|
|
|
| -SRCS="base.js dom.js util.js jstemplate.js"
|
| +SRCS="util.js jsevalcontext.js jstemplate.js exports.js"
|
| OUT="jstemplate_compiled.js"
|
|
|
| # TODO(tc): We should use an open source JS compressor/compiler to reduce
|
| # the size of our JS code.
|
|
|
| # Stripping // comments is trivial, so we'll do that at least.
|
| -cat $SRCS | grep -v '^ *//' > $OUT
|
| +echo "(function(){" > $OUT
|
| +cat $SRCS | grep -v '^ *//' >> $OUT
|
| +echo "})()" >> $OUT
|
|
|