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

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

Issue 1919193002: build: roll infra_paths changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 7 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 | Annotate | Revision Log
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 import collections 5 import collections
6 6
7 from recipe_engine.types import freeze 7 from recipe_engine.types import freeze
8 8
9 DEPS = [ 9 DEPS = [
10 'depot_tools/bot_update', 10 'depot_tools/bot_update',
11 'depot_tools/infra_paths',
Sergiy Byelozyorov 2016/04/26 14:41:05 needed?
11 'chromium', 12 'chromium',
12 'chromium_android', 13 'chromium_android',
13 'chromium_tests', 14 'chromium_tests',
14 'commit_position', 15 'commit_position',
15 'file', 16 'file',
16 'depot_tools/gclient', 17 'depot_tools/gclient',
17 'isolate', 18 'isolate',
18 'recipe_engine/json', 19 'recipe_engine/json',
19 'recipe_engine/path', 20 'recipe_engine/path',
20 'recipe_engine/platform', 21 'recipe_engine/platform',
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 props(mastername='tryserver.v8', 889 props(mastername='tryserver.v8',
889 buildername='v8_linux_blink_rel', 890 buildername='v8_linux_blink_rel',
890 patch_project='v8') + 891 patch_project='v8') +
891 api.platform.name('linux') + 892 api.platform.name('linux') +
892 suppress_analyze(more_exclusions=['v8/f.*']) + 893 suppress_analyze(more_exclusions=['v8/f.*']) +
893 api.override_step_data('webkit_tests (with patch)', 894 api.override_step_data('webkit_tests (with patch)',
894 api.test_utils.canned_test_output(passing=False)) + 895 api.test_utils.canned_test_output(passing=False)) +
895 api.override_step_data('webkit_tests (without patch)', 896 api.override_step_data('webkit_tests (without patch)',
896 api.test_utils.canned_test_output(passing=True, minimal=True)) 897 api.test_utils.canned_test_output(passing=True, minimal=True))
897 ) 898 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698