Chromium Code Reviews| Index: appengine/swarming/elements/Makefile |
| diff --git a/appengine/swarming/elements/Makefile b/appengine/swarming/elements/Makefile |
| index dbbdc40a8c97a32b586697d464c6baa9e3cd2d4b..17aea6985339d2e683f0195d79f21da1436af924 100644 |
| --- a/appengine/swarming/elements/Makefile |
| +++ b/appengine/swarming/elements/Makefile |
| @@ -10,9 +10,9 @@ default: |
| # Run a local HTTP server for the demo pages. |
| .PHONY: run |
| run: default |
| - -wget -nc --output-document=./imp/botlist/bot-list-demo.json https://storage.googleapis.com/luci-demo-data/swarming/bot-list-demo.json |
| + -wget -nc --output-document=./res/imp/botlist/bot-list-demo.json https://storage.googleapis.com/luci-demo-data/swarming/bot-list-demo.json |
| - node_modules/.bin/http-server -p 9050 -a 127.0.0.1 |
| + node_modules/.bin/http-server -p 9050 |
| .PHONY: vulcanize |
| @@ -21,6 +21,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 |
| + cp ./res/js/common.js ./build/js/common.js |
|
jcgregorio
2016/08/01 14:08:06
In a future CL this should be run through uglify-j
|
| .PHONY: debug_build |
| debug_build: default |
| @@ -28,6 +29,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 ./res/js/common.js ./build/js/common.js |
| ln --symbolic ../res/imp/ ./build/ |
| .PHONY: dev_deploy |