| OLD | NEW |
| 1 # The list of files we want to go into core.js, which is concat'd and | 1 # The list of files we want to go into core.js, which is concat'd and |
| 2 # minified. These files should be either present in the project, brought | 2 # minified. These files should be either present in the project, brought |
| 3 # into third_party/bower_compoents via bower, or in node_modules. | 3 # into third_party/bower_compoents via bower, or in node_modules. |
| 4 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ | 4 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ |
| 5 third_party/bower_components/webcomponentsjs/webcomponents.min.js \ | 5 third_party/bower_components/webcomponentsjs/webcomponents.min.js \ |
| 6 ../res/js/common.js \ | 6 ../res/js/common.js \ |
| 7 res/js/ctfe.js | 7 res/js/ctfe.js |
| 8 | 8 |
| 9 BOWER_DIR=third_party/bower_components | 9 BOWER_DIR=third_party/bower_components |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 go install -v ./go/master_scripts/run_lua_on_workers/ | 61 go install -v ./go/master_scripts/run_lua_on_workers/ |
| 62 | 62 |
| 63 .PHONY: capture_skps_on_workers | 63 .PHONY: capture_skps_on_workers |
| 64 capture_skps_on_workers: | 64 capture_skps_on_workers: |
| 65 go install -v ./go/master_scripts/capture_skps_on_workers/ | 65 go install -v ./go/master_scripts/capture_skps_on_workers/ |
| 66 | 66 |
| 67 .PHONY: run_chromium_perf_on_workers | 67 .PHONY: run_chromium_perf_on_workers |
| 68 run_chromium_perf_on_workers: | 68 run_chromium_perf_on_workers: |
| 69 go install -v ./go/master_scripts/run_chromium_perf_on_workers/ | 69 go install -v ./go/master_scripts/run_chromium_perf_on_workers/ |
| 70 | 70 |
| 71 .PHONY: run_chromium_analysis_on_workers |
| 72 run_chromium_analysis_on_workers: |
| 73 go install -v ./go/master_scripts/run_chromium_analysis_on_workers/ |
| 74 |
| 71 .PHONY: logserver_proxy | 75 .PHONY: logserver_proxy |
| 72 logserver_proxy: | 76 logserver_proxy: |
| 73 go install -v ./go/master_scripts/logserver_proxy/ | 77 go install -v ./go/master_scripts/logserver_proxy/ |
| 74 | 78 |
| 75 # Worker scripts. | 79 # Worker scripts. |
| 76 .PHONY: create_pagesets | 80 .PHONY: create_pagesets |
| 77 create_pagesets: | 81 create_pagesets: |
| 78 go install -v ./go/worker_scripts/create_pagesets/ | 82 go install -v ./go/worker_scripts/create_pagesets/ |
| 79 | 83 |
| 80 .PHONY: capture_archives | 84 .PHONY: capture_archives |
| 81 capture_archives: | 85 capture_archives: |
| 82 go install -v ./go/worker_scripts/capture_archives/ | 86 go install -v ./go/worker_scripts/capture_archives/ |
| 83 | 87 |
| 84 .PHONY: run_lua | 88 .PHONY: run_lua |
| 85 run_lua: | 89 run_lua: |
| 86 go install -v ./go/worker_scripts/run_lua/ | 90 go install -v ./go/worker_scripts/run_lua/ |
| 87 | 91 |
| 88 .PHONY: capture_skps | 92 .PHONY: capture_skps |
| 89 capture_skps: | 93 capture_skps: |
| 90 go install -v ./go/worker_scripts/capture_skps/ | 94 go install -v ./go/worker_scripts/capture_skps/ |
| 91 | 95 |
| 92 .PHONY: capture_skps_from_pdfs | 96 .PHONY: capture_skps_from_pdfs |
| 93 capture_skps_from_pdfs: | 97 capture_skps_from_pdfs: |
| 94 go install -v ./go/worker_scripts/capture_skps_from_pdfs/ | 98 go install -v ./go/worker_scripts/capture_skps_from_pdfs/ |
| 95 | 99 |
| 96 .PHONY: run_chromium_perf | 100 .PHONY: run_chromium_perf |
| 97 run_chromium_perf: | 101 run_chromium_perf: |
| 98 go install -v ./go/worker_scripts/run_chromium_perf/ | 102 go install -v ./go/worker_scripts/run_chromium_perf/ |
| 99 | 103 |
| 104 .PHONY: run_chromium_analysis |
| 105 run_chromium_analysis: |
| 106 go install -v ./go/worker_scripts/run_chromium_analysis/ |
| 107 |
| 100 .PHONY: poller | 108 .PHONY: poller |
| 101 poller: | 109 poller: |
| 102 go install -v ./go/poller/ | 110 go install -v ./go/poller/ |
| 103 | 111 |
| 104 # This is the quick version triggered by the presubmit script. | 112 # This is the quick version triggered by the presubmit script. |
| 105 .PHONY: testgo | 113 .PHONY: testgo |
| 106 testgo: | 114 testgo: |
| 107 go test ./go/... -v -test.short | 115 go test ./go/... -v -test.short |
| 108 | 116 |
| 109 .PHONY: test | 117 .PHONY: test |
| 110 test: | 118 test: |
| 111 go test ./go/... | 119 go test ./go/... |
| 112 | 120 |
| 113 .PHONY: master_scripts | 121 .PHONY: master_scripts |
| 114 master_scripts: run_command check_workers_health build_chromium \ | 122 master_scripts: run_command check_workers_health build_chromium \ |
| 115 create_pagesets_on_workers capture_archives_on_workers \ | 123 create_pagesets_on_workers capture_archives_on_workers \ |
| 116 run_lua_on_workers capture_skps_on_workers \ | 124 run_lua_on_workers capture_skps_on_workers \ |
| 117 » run_chromium_perf_on_workers logserver_proxy poller | 125 » run_chromium_perf_on_workers logserver_proxy poller \ |
| 126 run_chromium_analysis_on_workers |
| 118 | 127 |
| 119 .PHONY: worker_scripts | 128 .PHONY: worker_scripts |
| 120 worker_scripts: create_pagesets capture_archives run_lua capture_skps \ | 129 worker_scripts: create_pagesets capture_archives run_lua capture_skps \ |
| 121 capture_skps_from_pdfs run_chromium_perf | 130 capture_skps_from_pdfs run_chromium_perf \ |
| 131 run_chromium_analysis |
| 122 | 132 |
| 123 .PHONY: all | 133 .PHONY: all |
| 124 all: master_scripts worker_scripts testgo | 134 all: master_scripts worker_scripts testgo |
| 125 | 135 |
| 126 .PHONY: e2e_tests | 136 .PHONY: e2e_tests |
| 127 e2e_tests: | 137 e2e_tests: |
| 128 @echo "Running create_pagesets" | 138 @echo "Running create_pagesets" |
| 129 go run go/worker_scripts/create_pagesets/main.go -logtostderr --worker_n
um=1 --pageset_type=Dummy1k | 139 go run go/worker_scripts/create_pagesets/main.go -logtostderr --worker_n
um=1 --pageset_type=Dummy1k |
| 130 @echo "Completed create_pagests. Sleeping for 15 seconds and continuing.
" | 140 @echo "Completed create_pagests. Sleeping for 15 seconds and continuing.
" |
| 131 sleep 15 | 141 sleep 15 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 sleep 15 | 176 sleep 15 |
| 167 @echo | 177 @echo |
| 168 @echo | 178 @echo |
| 169 | 179 |
| 170 @echo "Running lua scripts" | 180 @echo "Running lua scripts" |
| 171 go run go/worker_scripts/run_lua/main.go --worker_num=1 --pageset_type=D
ummy1k --chromium_build=38517cc-d7e49ce --run_id=rmistry123 --logtostderr | 181 go run go/worker_scripts/run_lua/main.go --worker_num=1 --pageset_type=D
ummy1k --chromium_build=38517cc-d7e49ce --run_id=rmistry123 --logtostderr |
| 172 @echo "Completed lua scripts. Sleeping for 15 seconds and continuing." | 182 @echo "Completed lua scripts. Sleeping for 15 seconds and continuing." |
| 173 sleep 15 | 183 sleep 15 |
| 174 @echo | 184 @echo |
| 175 @echo | 185 @echo |
| OLD | NEW |