| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 .PHONY: logserver_proxy | 75 .PHONY: logserver_proxy |
| 76 logserver_proxy: | 76 logserver_proxy: |
| 77 go install -v ./go/master_scripts/logserver_proxy/ | 77 go install -v ./go/master_scripts/logserver_proxy/ |
| 78 | 78 |
| 79 # Worker scripts. | 79 # Worker scripts. |
| 80 .PHONY: create_pagesets | 80 .PHONY: create_pagesets |
| 81 create_pagesets: | 81 create_pagesets: |
| 82 go install -v ./go/worker_scripts/create_pagesets/ | 82 go install -v ./go/worker_scripts/create_pagesets/ |
| 83 | 83 |
| 84 .PHONY: build_repo |
| 85 build_repo: |
| 86 go install -v ./go/worker_scripts/build_repo/ |
| 87 |
| 84 .PHONY: capture_archives | 88 .PHONY: capture_archives |
| 85 capture_archives: | 89 capture_archives: |
| 86 go install -v ./go/worker_scripts/capture_archives/ | 90 go install -v ./go/worker_scripts/capture_archives/ |
| 87 | 91 |
| 88 .PHONY: run_lua | 92 .PHONY: run_lua |
| 89 run_lua: | 93 run_lua: |
| 90 go install -v ./go/worker_scripts/run_lua/ | 94 go install -v ./go/worker_scripts/run_lua/ |
| 91 | 95 |
| 92 .PHONY: capture_skps | 96 .PHONY: capture_skps |
| 93 capture_skps: | 97 capture_skps: |
| (...skipping 27 matching lines...) Expand all Loading... |
| 121 .PHONY: master_scripts | 125 .PHONY: master_scripts |
| 122 master_scripts: run_command check_workers_health build_chromium \ | 126 master_scripts: run_command check_workers_health build_chromium \ |
| 123 create_pagesets_on_workers capture_archives_on_workers \ | 127 create_pagesets_on_workers capture_archives_on_workers \ |
| 124 run_lua_on_workers capture_skps_on_workers \ | 128 run_lua_on_workers capture_skps_on_workers \ |
| 125 run_chromium_perf_on_workers logserver_proxy poller \ | 129 run_chromium_perf_on_workers logserver_proxy poller \ |
| 126 run_chromium_analysis_on_workers | 130 run_chromium_analysis_on_workers |
| 127 | 131 |
| 128 .PHONY: worker_scripts | 132 .PHONY: worker_scripts |
| 129 worker_scripts: create_pagesets capture_archives run_lua capture_skps \ | 133 worker_scripts: create_pagesets capture_archives run_lua capture_skps \ |
| 130 capture_skps_from_pdfs run_chromium_perf \ | 134 capture_skps_from_pdfs run_chromium_perf \ |
| 131 run_chromium_analysis | 135 run_chromium_analysis build_repo |
| 132 | 136 |
| 133 .PHONY: all | 137 .PHONY: all |
| 134 all: master_scripts worker_scripts testgo | 138 all: master_scripts worker_scripts testgo |
| 135 | 139 |
| 136 .PHONY: e2e_tests | 140 .PHONY: e2e_tests |
| 137 e2e_tests: | 141 e2e_tests: |
| 138 @echo "Running create_pagesets" | 142 @echo "Running create_pagesets" |
| 139 go run go/worker_scripts/create_pagesets/main.go -logtostderr --worker_n
um=1 --pageset_type=Dummy1k | 143 go run go/worker_scripts/create_pagesets/main.go -logtostderr --worker_n
um=1 --pageset_type=Dummy1k |
| 140 @echo "Completed create_pagests. Sleeping for 15 seconds and continuing.
" | 144 @echo "Completed create_pagests. Sleeping for 15 seconds and continuing.
" |
| 141 sleep 15 | 145 sleep 15 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 sleep 15 | 180 sleep 15 |
| 177 @echo | 181 @echo |
| 178 @echo | 182 @echo |
| 179 | 183 |
| 180 @echo "Running lua scripts" | 184 @echo "Running lua scripts" |
| 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 | 185 go run go/worker_scripts/run_lua/main.go --worker_num=1 --pageset_type=D
ummy1k --chromium_build=38517cc-d7e49ce --run_id=rmistry123 --logtostderr |
| 182 @echo "Completed lua scripts. Sleeping for 15 seconds and continuing." | 186 @echo "Completed lua scripts. Sleeping for 15 seconds and continuing." |
| 183 sleep 15 | 187 sleep 15 |
| 184 @echo | 188 @echo |
| 185 @echo | 189 @echo |
| OLD | NEW |