| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 DEPS = [ | 5 DEPS = [ |
| 6 'archive', | 6 'archive', |
| 7 'chromium', | 7 'chromium', |
| 8 'depot_tools/gclient', | 8 'depot_tools/gclient', |
| 9 'recipe_engine/json', | 9 'recipe_engine/json', |
| 10 'recipe_engine/path', | 10 'recipe_engine/path', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 if update_properties.get('got_swarming_client_revision'): | 58 if update_properties.get('got_swarming_client_revision'): |
| 59 additional_trigger_properties['parent_got_swarming_client_revision'] = ( | 59 additional_trigger_properties['parent_got_swarming_client_revision'] = ( |
| 60 update_properties['got_swarming_client_revision']) | 60 update_properties['got_swarming_client_revision']) |
| 61 | 61 |
| 62 v8.set_up_swarming() | 62 v8.set_up_swarming() |
| 63 | 63 |
| 64 if v8.c.mips_cross_compile: | 64 if v8.c.mips_cross_compile: |
| 65 v8.setup_mips_toolchain() | 65 v8.setup_mips_toolchain() |
| 66 v8.runhooks() | 66 v8.runhooks() |
| 67 v8.peek_gn() | |
| 68 api.chromium.cleanup_temp() | 67 api.chromium.cleanup_temp() |
| 69 | 68 |
| 70 if v8.generate_gcov_coverage: | 69 if v8.generate_gcov_coverage: |
| 71 v8.init_gcov_coverage() | 70 v8.init_gcov_coverage() |
| 72 | 71 |
| 73 if v8.should_build: | 72 if v8.should_build: |
| 74 v8.compile() | 73 v8.compile() |
| 75 | 74 |
| 76 if v8.run_dynamorio: | 75 if v8.run_dynamorio: |
| 77 v8.dr_compile() | 76 v8.dr_compile() |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 api.v8.test( | 378 api.v8.test( |
| 380 'tryserver.v8', | 379 'tryserver.v8', |
| 381 'v8_linux_rel_ng_triggered', | 380 'v8_linux_rel_ng_triggered', |
| 382 'slow_tests', | 381 'slow_tests', |
| 383 requester='commit-bot@chromium.org', | 382 requester='commit-bot@chromium.org', |
| 384 patch_project='v8', | 383 patch_project='v8', |
| 385 blamelist=['dude@chromium.org'], | 384 blamelist=['dude@chromium.org'], |
| 386 ) + api.override_step_data( | 385 ) + api.override_step_data( |
| 387 'Check', api.v8.output_json(unmarked_slow_test=True)) | 386 'Check', api.v8.output_json(unmarked_slow_test=True)) |
| 388 ) | 387 ) |
| OLD | NEW |