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

Unified Diff: appengine/swarming/elements/Makefile

Issue 2182693002: Add new botlist for swarming (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@app-wrapper
Patch Set: Adjust font and layout a bit more Created 4 years, 5 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
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

Powered by Google App Engine
This is Rietveld 408576698