| 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 import collections | 5 import collections |
| 6 | 6 |
| 7 from recipe_engine.types import freeze | 7 from recipe_engine.types import freeze |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'amp', | 10 'amp', |
| (...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 }, | 826 }, |
| 827 }) | 827 }) |
| 828 ) + | 828 ) + |
| 829 api.override_step_data( | 829 api.override_step_data( |
| 830 'analyze', | 830 'analyze', |
| 831 api.json.output({'invalid_targets': ['invalid target', 'another one']})) | 831 api.json.output({'invalid_targets': ['invalid target', 'another one']})) |
| 832 ) | 832 ) |
| 833 | 833 |
| 834 gpu_targets = ['angle_unittests_run', 'chrome', 'chromium_builder_tests', | 834 gpu_targets = ['angle_unittests_run', 'chrome', 'chromium_builder_tests', |
| 835 'content_gl_tests_run', 'gl_tests_run', | 835 'content_gl_tests_run', 'gl_tests_run', |
| 836 'tab_capture_end2end_tests_run', 'telemetry_gpu_new_test_run'] | 836 'tab_capture_end2end_tests_run', 'telemetry_gpu_test_run'] |
| 837 yield ( | 837 yield ( |
| 838 api.test('gpu_tests') + | 838 api.test('gpu_tests') + |
| 839 props( | 839 props( |
| 840 mastername='tryserver.chromium.mac', | 840 mastername='tryserver.chromium.mac', |
| 841 buildername='mac_chromium_rel_ng', | 841 buildername='mac_chromium_rel_ng', |
| 842 ) + | 842 ) + |
| 843 api.platform.name('mac') + | 843 api.platform.name('mac') + |
| 844 api.override_step_data( | 844 api.override_step_data( |
| 845 'pixel_test on Intel GPU on Mac (with patch)', | 845 'pixel_test on Intel GPU on Mac (with patch)', |
| 846 api.test_utils.canned_isolated_script_output( | 846 api.test_utils.canned_isolated_script_output( |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 api.test_utils.canned_test_output(passing=True)) | 1087 api.test_utils.canned_test_output(passing=True)) |
| 1088 ) | 1088 ) |
| 1089 | 1089 |
| 1090 yield ( | 1090 yield ( |
| 1091 api.test('use_v8_patch_on_blink_trybot') + | 1091 api.test('use_v8_patch_on_blink_trybot') + |
| 1092 props(mastername='tryserver.blink', | 1092 props(mastername='tryserver.blink', |
| 1093 buildername='mac_blink_rel', | 1093 buildername='mac_blink_rel', |
| 1094 patch_project='v8') + | 1094 patch_project='v8') + |
| 1095 api.platform.name('mac') | 1095 api.platform.name('mac') |
| 1096 ) | 1096 ) |
| OLD | NEW |