| 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 DEPS = [ | 5 DEPS = [ |
| 6 'chromium', | 6 'chromium', |
| 7 'gclient', | 7 'gclient', |
| 8 'itertools', | 8 'itertools', |
| 9 'json', | 9 'json', |
| 10 'path', | 10 'path', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 'cc_unittests', | 26 'cc_unittests', |
| 27 'chromedriver_unittests', | 27 'chromedriver_unittests', |
| 28 'components_unittests', | 28 'components_unittests', |
| 29 'content_unittests', | 29 'content_unittests', |
| 30 'crypto_unittests', | 30 'crypto_unittests', |
| 31 'google_apis_unittests', | 31 'google_apis_unittests', |
| 32 'gpu_unittests', | 32 'gpu_unittests', |
| 33 'ipc_tests', | 33 'ipc_tests', |
| 34 'jingle_unittests', | 34 'jingle_unittests', |
| 35 'media_unittests', | 35 'media_unittests', |
| 36 'mojo_common_unittests', |
| 37 'mojo_public_unittests', |
| 38 'mojo_shell_unittests', |
| 39 'mojo_system_unittests', |
| 36 'net_unittests', | 40 'net_unittests', |
| 37 'ppapi_unittests', | 41 'ppapi_unittests', |
| 38 'printing_unittests', | 42 'printing_unittests', |
| 39 'remoting_unittests', | 43 'remoting_unittests', |
| 40 'sql_unittests', | 44 'sql_unittests', |
| 41 'sync_unit_tests', | 45 'sync_unit_tests', |
| 42 'ui_unittests', | 46 'ui_unittests', |
| 43 'unit_tests', | 47 'unit_tests', |
| 44 | 48 |
| 45 # Large tests. Sort alphabetically. | 49 # Large tests. Sort alphabetically. |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 api.json.output(None)) | 369 api.json.output(None)) |
| 366 yield invalid_json_without_patch_test | 370 yield invalid_json_without_patch_test |
| 367 | 371 |
| 368 for step in ('gclient revert', 'gclient runhooks', 'compile'): | 372 for step in ('gclient revert', 'gclient runhooks', 'compile'): |
| 369 yield ( | 373 yield ( |
| 370 api.test(step.replace(' ', '_') + '_failure') + | 374 api.test(step.replace(' ', '_') + '_failure') + |
| 371 props() + | 375 props() + |
| 372 api.platform.name('win') + | 376 api.platform.name('win') + |
| 373 api.step_data(step, retcode=1) | 377 api.step_data(step, retcode=1) |
| 374 ) | 378 ) |
| OLD | NEW |