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

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

Issue 1917243002: Revert "build: roll infra_paths changes" (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
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',
12 'chromium', 11 'chromium',
13 'chromium_android', 12 'chromium_android',
14 'chromium_tests', 13 'chromium_tests',
15 'commit_position', 14 'commit_position',
16 'file', 15 'file',
17 'depot_tools/gclient', 16 'depot_tools/gclient',
18 'isolate', 17 'isolate',
19 'recipe_engine/json', 18 'recipe_engine/json',
20 'recipe_engine/path', 19 'recipe_engine/path',
21 'recipe_engine/platform', 20 'recipe_engine/platform',
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 props(mastername='tryserver.v8', 888 props(mastername='tryserver.v8',
890 buildername='v8_linux_blink_rel', 889 buildername='v8_linux_blink_rel',
891 patch_project='v8') + 890 patch_project='v8') +
892 api.platform.name('linux') + 891 api.platform.name('linux') +
893 suppress_analyze(more_exclusions=['v8/f.*']) + 892 suppress_analyze(more_exclusions=['v8/f.*']) +
894 api.override_step_data('webkit_tests (with patch)', 893 api.override_step_data('webkit_tests (with patch)',
895 api.test_utils.canned_test_output(passing=False)) + 894 api.test_utils.canned_test_output(passing=False)) +
896 api.override_step_data('webkit_tests (without patch)', 895 api.override_step_data('webkit_tests (without patch)',
897 api.test_utils.canned_test_output(passing=True, minimal=True)) 896 api.test_utils.canned_test_output(passing=True, minimal=True))
898 ) 897 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698