| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import json | 5 import json |
| 6 | 6 |
| 7 from recipe_engine.config import Dict | 7 from recipe_engine.config import Dict |
| 8 from recipe_engine.config import Single | 8 from recipe_engine.config import Single |
| 9 from recipe_engine.recipe_api import Property | 9 from recipe_engine.recipe_api import Property |
| 10 | 10 |
| 11 | 11 |
| 12 DEPS = [ | 12 DEPS = [ |
| 13 'adb', | 13 'adb', |
| 14 'depot_tools/bot_update', | 14 'depot_tools/bot_update', |
| 15 'chromium', | 15 'chromium', |
| 16 'chromium_android', |
| 16 'chromium_tests', | 17 'chromium_tests', |
| 17 'commit_position', | 18 'commit_position', |
| 18 'findit', | 19 'findit', |
| 19 'depot_tools/gclient', | 20 'depot_tools/gclient', |
| 20 'isolate', | 21 'isolate', |
| 21 'recipe_engine/json', | 22 'recipe_engine/json', |
| 22 'recipe_engine/path', | 23 'recipe_engine/path', |
| 23 'recipe_engine/platform', | 24 'recipe_engine/platform', |
| 24 'recipe_engine/properties', | 25 'recipe_engine/properties', |
| 25 'recipe_engine/python', | 26 'recipe_engine/python', |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 'swarming': {'can_use_on_swarming_builders': True}, | 460 'swarming': {'can_use_on_swarming_builders': True}, |
| 460 }, | 461 }, |
| 461 ], | 462 ], |
| 462 }, | 463 }, |
| 463 })) + | 464 })) + |
| 464 api.override_step_data( | 465 api.override_step_data( |
| 465 'test r1.gl_tests (r1) on Mac-10.9', | 466 'test r1.gl_tests (r1) on Mac-10.9', |
| 466 simulated_gtest_output(passed_test_names=['Test.One']) | 467 simulated_gtest_output(passed_test_names=['Test.One']) |
| 467 ) | 468 ) |
| 468 ) | 469 ) |
| OLD | NEW |