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

Unified Diff: appengine/swarming/elements/Makefile

Issue 2227803002: Mirror filters and sort preferences to url-params (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@use-dimensions
Patch Set: Make limit a visible option Created 4 years, 4 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 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/

Powered by Google App Engine
This is Rietveld 408576698