| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 recipe_engine.types import freeze | 5 from infra.libs.infra_types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'archive', | 8 'archive', |
| 9 'chromium', | 9 'chromium', |
| 10 'pgo', | 10 'pgo', |
| 11 'platform', | 11 'platform', |
| 12 'properties', | 12 'properties', |
| 13 'step', | 13 'step', |
| 14 ] | 14 ] |
| 15 | 15 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 yield ( | 91 yield ( |
| 92 api.test('full_%s_%s_benchmark_failure' % | 92 api.test('full_%s_%s_benchmark_failure' % |
| 93 (_sanitize_nonalpha('chromium.fyi'), | 93 (_sanitize_nonalpha('chromium.fyi'), |
| 94 _sanitize_nonalpha('Chromium Win PGO Builder'))) + | 94 _sanitize_nonalpha('Chromium Win PGO Builder'))) + |
| 95 api.properties.generic(mastername='chromium.fyi', | 95 api.properties.generic(mastername='chromium.fyi', |
| 96 buildername='Chromium Win PGO Builder') + | 96 buildername='Chromium Win PGO Builder') + |
| 97 api.platform('win', 32) + | 97 api.platform('win', 32) + |
| 98 api.step_data('Telemetry benchmark: sunspider', retcode=1) | 98 api.step_data('Telemetry benchmark: sunspider', retcode=1) |
| 99 ) | 99 ) |
| OLD | NEW |