| 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_tests', | 10 'chromium_tests', |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 api.isolate.clean_isolated_files(api.chromium.output_dir) | 389 api.isolate.clean_isolated_files(api.chromium.output_dir) |
| 390 api.chromium.compile() | 390 api.chromium.compile() |
| 391 api.isolate.isolate_tests(api.chromium.output_dir) | 391 api.isolate.isolate_tests(api.chromium.output_dir) |
| 392 | 392 |
| 393 extra_args = [] | 393 extra_args = [] |
| 394 if 'oilpan' in buildername: | 394 if 'oilpan' in buildername: |
| 395 extra_args.extend(['--additional-expectations', | 395 extra_args.extend(['--additional-expectations', |
| 396 api.path['checkout'].join('third_party', 'WebKit', | 396 api.path['checkout'].join('third_party', 'WebKit', |
| 397 'LayoutTests', | 397 'LayoutTests', |
| 398 'OilpanExpectations')]) | 398 'OilpanExpectations')]) |
| 399 tests.append(api.chromium.steps.BlinkTest(extra_args=extra_args)) | 399 tests.append(api.chromium_tests.steps.BlinkTest(extra_args=extra_args)) |
| 400 | 400 |
| 401 api.test_utils.determine_new_failures(api, tests, deapply_patch_fn) | 401 api.test_utils.determine_new_failures(api, tests, deapply_patch_fn) |
| 402 | 402 |
| 403 | 403 |
| 404 def GenSteps(api): | 404 def GenSteps(api): |
| 405 with api.tryserver.set_failure_hash(): | 405 with api.tryserver.set_failure_hash(): |
| 406 return _GenStepsInternal(api) | 406 return _GenStepsInternal(api) |
| 407 | 407 |
| 408 | 408 |
| 409 def _sanitize_nonalpha(text): | 409 def _sanitize_nonalpha(text): |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 passing=False, is_win=False, swarming=True)) | 537 passing=False, is_win=False, swarming=True)) |
| 538 ) | 538 ) |
| 539 | 539 |
| 540 yield ( | 540 yield ( |
| 541 api.test('use_v8_patch_on_blink_trybot') + | 541 api.test('use_v8_patch_on_blink_trybot') + |
| 542 properties(buildername='mac_blink_rel', | 542 properties(buildername='mac_blink_rel', |
| 543 mastername='tryserver.blink', | 543 mastername='tryserver.blink', |
| 544 patch_project='v8') + | 544 patch_project='v8') + |
| 545 api.platform.name('mac') | 545 api.platform.name('mac') |
| 546 ) | 546 ) |
| OLD | NEW |