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

Side by Side Diff: autoroll/Makefile

Issue 1411553004: Add autoroll server (Closed) Base URL: https://skia.googlesource.com/buildbot@arb_status
Patch Set: Add error-toast-sk to app-sk Created 5 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 unified diff | Download patch
« no previous file with comments | « autoroll/.bowerrc ('k') | autoroll/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 VULCANIZE1=true 1 VULCANIZE1=true
2 2
3 # The list of files we want to go into core.js, which is concat'd and 3 # The list of files we want to go into core.js, which is concat'd and
4 # minified. These files should be either present in the project, brought 4 # minified. These files should be either present in the project, brought
5 # into third_party/bower_compoents via bower, or in node_modules. 5 # into third_party/bower_compoents via bower, or in node_modules.
6 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ 6 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \
7 third_party/bower_components/webcomponentsjs/webcomponents.min.js \ 7 third_party/bower_components/webcomponentsjs/webcomponents.min.js \
8 ../res/js/common.js 8 ../res/js/common.js
9 9
10 BOWER_DIR=third_party/bower_components 10 BOWER_DIR=third_party/bower_components
11 11
12 12
13 include ../go/skiaversion/skiaversion.mk 13 include ../go/skiaversion/skiaversion.mk
14 14
15 all: alertserver 15 all: autoroll
16 16
17 alertserver: core_js elements_html skiaversion 17 autoroll: core_js elements_html skiaversion
18 » go install -v ./go/alertserver 18 » go install -v ./go/autoroll
19 19
20 testgo: skiaversion 20 testgo: skiaversion
21 go test ./go/... -v 21 go test ./go/... -v
22 22
23 migratedb:
24 go install -v ./go/alertserver_migratedb
25
26 # Build debug versions of core.js and elements.html. 23 # Build debug versions of core.js and elements.html.
27 .PHONY: debug 24 .PHONY: debug
28 debug: clean_webtools debug_core_js debug_elements_html 25 debug: clean_webtools debug_core_js debug_elements_html
29 26
30 include ../webtools/webtools.mk 27 include ../webtools/webtools.mk
31 28
32 release: alertserver 29 release: autoroll
33 ./build_release "$(MESSAGE)" 30 ./build_release "$(MESSAGE)"
OLDNEW
« no previous file with comments | « autoroll/.bowerrc ('k') | autoroll/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698