Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: scripts/slave/recipes/findit/chromium/test.py

Issue 1893363004: [Findit] Make the recipe support running tests on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 )
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698