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

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

Issue 2063323002: Create recipe to run find_annotated_tests.py periodically (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Move from recipe to a step Created 4 years, 5 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
OLDNEW
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 'adb', 6 'adb',
7 'amp', 7 'amp',
8 'bisect_tester', 8 'bisect_tester',
9 'depot_tools/bot_update', 9 'depot_tools/bot_update',
10 'chromium', 10 'chromium',
11 'chromium_android', 11 'chromium_android',
12 'chromium_tests', 12 'chromium_tests',
13 'commit_position', 13 'commit_position',
14 'file', 14 'file',
15 'isolate', 15 'isolate',
16 'gsutil',
16 'recipe_engine/json', 17 'recipe_engine/json',
17 'recipe_engine/path', 18 'recipe_engine/path',
18 'recipe_engine/platform', 19 'recipe_engine/platform',
19 'recipe_engine/properties', 20 'recipe_engine/properties',
20 'recipe_engine/python', 21 'recipe_engine/python',
21 'recipe_engine/raw_io', 22 'recipe_engine/raw_io',
22 'recipe_engine/step', 23 'recipe_engine/step',
23 'swarming', 24 'swarming',
24 'test_results', 25 'test_results',
25 'test_utils', 26 'test_utils',
(...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 1072
1072 yield ( 1073 yield (
1073 api.test('kitchen_path_config') + 1074 api.test('kitchen_path_config') +
1074 api.properties( 1075 api.properties(
1075 mastername='chromium.fyi', 1076 mastername='chromium.fyi',
1076 buildername='Linux Kitchen (kitchen_run)', 1077 buildername='Linux Kitchen (kitchen_run)',
1077 slavename='build1-a1', 1078 slavename='build1-a1',
1078 buildnumber='77457', 1079 buildnumber='77457',
1079 path_config='kitchen') 1080 path_config='kitchen')
1080 ) 1081 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698