| 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 recipe_engine.types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'adb', | 8 'adb', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_android', | 10 'chromium_android', |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 stream='stdout'))) | 382 stream='stdout'))) |
| 383 | 383 |
| 384 yield (api.test('device_file_match') + | 384 yield (api.test('device_file_match') + |
| 385 properties_for('tester') + | 385 properties_for('tester') + |
| 386 api.path.exists( | 386 api.path.exists( |
| 387 api.path['build'].join('site_config', '.known_devices'))) | 387 api.path['build'].join('site_config', '.known_devices'))) |
| 388 | 388 |
| 389 yield (api.test('device_file_format_mismatch') + | 389 yield (api.test('device_file_format_mismatch') + |
| 390 properties_for('tester') + | 390 properties_for('tester') + |
| 391 api.path.exists( | 391 api.path.exists( |
| 392 api.path['build'].join('site_config', '.known_devices')) + | 392 api.path['cache'].join('known_android_devices')) + |
| 393 api.override_step_data('fix_device_file_format.read_device_file', | 393 api.override_step_data('fix_device_file_format.read_device_file', |
| 394 api.raw_io.output('["device1", "device2"]'))) | 394 api.raw_io.output('["device1", "device2"]'))) |
| 395 | 395 |
| 396 yield (api.test('tombstones_m53') + | 396 yield (api.test('tombstones_m53') + |
| 397 properties_for('tester') + | 397 properties_for('tester') + |
| 398 api.override_step_data('get version (2)', | 398 api.override_step_data('get version (2)', |
| 399 api.raw_io.output('MAJOR=53\nMINOR=0\nBUILD=2800\nPATCH=0\n'))) | 399 api.raw_io.output('MAJOR=53\nMINOR=0\nBUILD=2800\nPATCH=0\n'))) |
| OLD | NEW |