| 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 infra.libs.infra_types import freeze | 5 from infra.libs.infra_types import freeze |
| 6 from slave import recipe_api | 6 from recipe_engine import recipe_api |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'bot_update', | 9 'bot_update', |
| 10 'chromium', | 10 'chromium', |
| 11 'chromium_android', | 11 'chromium_android', |
| 12 'path', | 12 'path', |
| 13 'properties', | 13 'properties', |
| 14 'python', | 14 'python', |
| 15 'step', | 15 'step', |
| 16 ] | 16 ] |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 api.chromium.runtest('mojo_shell_unittests') | 66 api.chromium.runtest('mojo_shell_unittests') |
| 67 api.chromium.runtest('mojo_surfaces_lib_unittests') | 67 api.chromium.runtest('mojo_surfaces_lib_unittests') |
| 68 api.chromium.runtest('resource_provider_unittests') | 68 api.chromium.runtest('resource_provider_unittests') |
| 69 api.chromium.runtest('view_manager_unittests') | 69 api.chromium.runtest('view_manager_unittests') |
| 70 _RunApptests(api) | 70 _RunApptests(api) |
| 71 | 71 |
| 72 | 72 |
| 73 def GenTests(api): | 73 def GenTests(api): |
| 74 for test in api.chromium.gen_tests_for_builders(BUILDERS): | 74 for test in api.chromium.gen_tests_for_builders(BUILDERS): |
| 75 yield test | 75 yield test |
| OLD | NEW |