Index: ct/Makefile |
diff --git a/ct/Makefile b/ct/Makefile |
index ad4208cab37f18931c4b0b3c5459a202b29a060f..2b72408be336cae82ddae9c8be2b5d0e9613287b 100644 |
--- a/ct/Makefile |
+++ b/ct/Makefile |
@@ -68,6 +68,10 @@ capture_skps_on_workers: |
run_chromium_perf_on_workers: |
go install -v ./go/master_scripts/run_chromium_perf_on_workers/ |
+.PHONY: run_chromium_analysis_on_workers |
+run_chromium_analysis_on_workers: |
+ go install -v ./go/master_scripts/run_chromium_analysis_on_workers/ |
+ |
.PHONY: logserver_proxy |
logserver_proxy: |
go install -v ./go/master_scripts/logserver_proxy/ |
@@ -97,6 +101,10 @@ capture_skps_from_pdfs: |
run_chromium_perf: |
go install -v ./go/worker_scripts/run_chromium_perf/ |
+.PHONY: run_chromium_analysis |
+run_chromium_analysis: |
+ go install -v ./go/worker_scripts/run_chromium_analysis/ |
+ |
.PHONY: poller |
poller: |
go install -v ./go/poller/ |
@@ -114,11 +122,13 @@ test: |
master_scripts: run_command check_workers_health build_chromium \ |
create_pagesets_on_workers capture_archives_on_workers \ |
run_lua_on_workers capture_skps_on_workers \ |
- run_chromium_perf_on_workers logserver_proxy poller |
+ run_chromium_perf_on_workers logserver_proxy poller \ |
+ run_chromium_analysis_on_workers |
.PHONY: worker_scripts |
worker_scripts: create_pagesets capture_archives run_lua capture_skps \ |
- capture_skps_from_pdfs run_chromium_perf |
+ capture_skps_from_pdfs run_chromium_perf \ |
+ run_chromium_analysis |
.PHONY: all |
all: master_scripts worker_scripts testgo |