Chromium Code Reviews| Index: appengine/swarming/elements/Makefile |
| diff --git a/appengine/swarming/elements/Makefile b/appengine/swarming/elements/Makefile |
| index 4cd93fef543f1b8b907600d071c72fa8e6587a09..e37ffe50fa9fe59516eca6b81555c833ac65e04f 100644 |
| --- a/appengine/swarming/elements/Makefile |
| +++ b/appengine/swarming/elements/Makefile |
| @@ -22,6 +22,7 @@ vulcanize: default |
| mkdir ./build/js |
| ./node_modules/.bin/vulcanize --inline-css=true --inline-scripts=true --strip-comments=true --abspath=./ --out-html=./build/elements.html elements.html |
| cp ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js ./build/js/webcomponents-lite.min.js |
| + ./node_modules/.bin/uglifyjs ./node_modules/skia-common-js/common.js -o ./build/js/sk.js |
|
stephana
2016/08/11 17:09:53
Is there are reason why the JS files are not all c
kjlubick
2016/08/11 20:00:21
I guess not. Done.
|
| ./node_modules/.bin/uglifyjs ./res/js/common.js -o ./build/js/common.js |
| .PHONY: debug_build |
| @@ -30,6 +31,7 @@ debug_build: default |
| mkdir ./build/js |
| cp elements.html ./build/elements.html |
| cp ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js ./build/js/webcomponents-lite.min.js |
| + cp ./node_modules/skia-common-js/common.js ./build/js/sk.js |
| cp ./res/js/common.js ./build/js/common.js |
| ln --symbolic ../res/imp/ ./build/ |