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

Unified Diff: appengine/swarming/elements/Makefile

Issue 2381853003: Add bot-page summary with utilization stats (Closed) Base URL: git@github.com:luci/luci-py@page-everywhere
Patch Set: rebase Created 4 years, 2 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 ba0763b682ff09994c301ae2f19e401c214a87b0..f4139473d0b64215bca2c658ffd193f01ed5c571 100644
--- a/appengine/swarming/elements/Makefile
+++ b/appengine/swarming/elements/Makefile
@@ -37,14 +37,14 @@ vulcanize: default
rm -rf ./build/*
mkdir ./build/js
./node_modules/.bin/vulcanize --inline-css --inline-scripts --strip-comments --abspath=./ elements.html | ./node_modules/.bin/html-minifier -o ./build/elements.html --minify-css --minify-js --remove-comments --collapse-whitespace --conservative-collapse
- cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js ./node_modules/skia-common-js/common.js ./res/js/common.js ./res/js/alias.js | ./node_modules/.bin/uglifyjs -o ./build/js/js.js
+ cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js ./third_party/common-strings.js ./node_modules/skia-common-js/common.js ./res/js/common.js ./res/js/alias.js | ./node_modules/.bin/uglifyjs -o ./build/js/js.js
.PHONY: debug_build
debug_build: default
rm -rf ./build/*
mkdir ./build/js
cp elements.html ./build/elements.html
- cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js ./node_modules/skia-common-js/common.js ./res/js/common.js ./res/js/alias.js > ./build/js/js.js
+ cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js ./third_party/common-strings.js ./node_modules/skia-common-js/common.js ./res/js/common.js ./res/js/alias.js > ./build/js/js.js
ln --symbolic ../res/imp/ ./build/
.PHONY: dev_deploy
@@ -61,4 +61,8 @@ local_deploy: vulcanize
.PHONY: debug_local_deploy
debug_local_deploy: debug_build
- ../tools/start_servers.py
+ ../tools/start_servers.py
+
+.PHONY: debug_dev_deploy
+debug_dev_deploy: debug_build
+ ../tools/gae upl -A chromium-swarm-dev

Powered by Google App Engine
This is Rietveld 408576698