| 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 from infra.libs.infra_types import freeze | 5 from infra.libs.infra_types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'bot_update', | 8 'bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_android', | 10 'chromium_android', |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 | 423 |
| 424 api.chromium_tests.configure_build( | 424 api.chromium_tests.configure_build( |
| 425 bot_config['mastername'], | 425 bot_config['mastername'], |
| 426 bot_config['buildername'], | 426 bot_config['buildername'], |
| 427 override_bot_type='builder_tester') | 427 override_bot_type='builder_tester') |
| 428 | 428 |
| 429 api.chromium.apply_config('trybot_flavor') | 429 api.chromium.apply_config('trybot_flavor') |
| 430 if enable_gpu_tests: | 430 if enable_gpu_tests: |
| 431 api.chromium.apply_config('archive_gpu_tests') | 431 api.chromium.apply_config('archive_gpu_tests') |
| 432 | 432 |
| 433 # TODO(phajdan.jr): Make ninja_confirm_noop consistent between main waterfall | |
| 434 # and trybots, http://crbug.com/501744 . | |
| 435 if (api.chromium.c.TARGET_PLATFORM != 'android' | |
| 436 and 'win8' not in buildername): | |
| 437 api.chromium.apply_config('ninja_confirm_noop') | |
| 438 | |
| 439 bot_update_step, master_dict, test_spec = \ | 433 bot_update_step, master_dict, test_spec = \ |
| 440 api.chromium_tests.prepare_checkout( | 434 api.chromium_tests.prepare_checkout( |
| 441 bot_config['mastername'], | 435 bot_config['mastername'], |
| 442 bot_config['buildername']) | 436 bot_config['buildername']) |
| 443 | 437 |
| 444 tests = list(api.chromium_tests.tests_for_builder( | 438 tests = list(api.chromium_tests.tests_for_builder( |
| 445 bot_config['mastername'], | 439 bot_config['mastername'], |
| 446 bot_config['buildername'], | 440 bot_config['buildername'], |
| 447 bot_update_step, | 441 bot_update_step, |
| 448 master_dict, | 442 master_dict, |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 | 1096 |
| 1103 yield ( | 1097 yield ( |
| 1104 api.test('swarming_paths') + | 1098 api.test('swarming_paths') + |
| 1105 api.properties.tryserver( | 1099 api.properties.tryserver( |
| 1106 mastername='tryserver.chromium.linux', | 1100 mastername='tryserver.chromium.linux', |
| 1107 buildername='linux_chromium_rel_ng', | 1101 buildername='linux_chromium_rel_ng', |
| 1108 path_config='swarming', | 1102 path_config='swarming', |
| 1109 ) + | 1103 ) + |
| 1110 api.platform.name('linux') | 1104 api.platform.name('linux') |
| 1111 ) | 1105 ) |
| OLD | NEW |