| 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 'bot_update', | 8 'bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'commit_position', | 10 'commit_position', |
| 11 'file', | 11 'file', |
| 12 'gclient', | 12 'gclient', |
| 13 'gsutil', | 13 'gsutil', |
| 14 'json', | 14 'json', |
| 15 'path', | 15 'path', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 api.test( | 246 api.test( |
| 247 'full_%s_fail' % _sanitize_nonalpha('ChromiumOS Codesearch')) + | 247 'full_%s_fail' % _sanitize_nonalpha('ChromiumOS Codesearch')) + |
| 248 api.step_data('generate compilation database for chromeos', | 248 api.step_data('generate compilation database for chromeos', |
| 249 stdout=api.raw_io.output('some compilation data')) + | 249 stdout=api.raw_io.output('some compilation data')) + |
| 250 api.step_data('generate compilation database for linux', | 250 api.step_data('generate compilation database for linux', |
| 251 stdout=api.raw_io.output('some compilation data')) + | 251 stdout=api.raw_io.output('some compilation data')) + |
| 252 api.step_data('run translation_unit clang tool', retcode=2) + | 252 api.step_data('run translation_unit clang tool', retcode=2) + |
| 253 api.properties.generic(buildername='ChromiumOS Codesearch', | 253 api.properties.generic(buildername='ChromiumOS Codesearch', |
| 254 mastername='chromium.infra.cron') | 254 mastername='chromium.infra.cron') |
| 255 ) | 255 ) |
| OLD | NEW |