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

Side by Side Diff: scripts/slave/recipes/bisection/desktop_bisect.py

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Address review comments. Created 5 years, 6 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 | « scripts/slave/recipes/bisect.py ('k') | scripts/slave/recipes/blink_downstream.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 DEPS = [ 5 DEPS = [
6 'auto_bisect', 6 'auto_bisect',
7 'chromium_tests', 7 'chromium_tests',
8 'platform', 8 'platform',
9 'properties', 9 'properties',
10 ] 10 ]
11 11
12 def GenSteps(api): 12 def GenSteps(api):
13 mastername = api.properties.get('mastername') 13 mastername = api.properties.get('mastername')
14 buildername = api.properties.get('buildername') 14 buildername = api.properties.get('buildername')
15 # TODO(akuegel): Explicitly load the builder configs instead of relying on
16 # builder.py from chromium_tests recipe module.
15 api.chromium_tests.configure_build(mastername, buildername) 17 api.chromium_tests.configure_build(mastername, buildername)
16 api.chromium_tests.prepare_checkout(mastername, buildername) 18 api.chromium_tests.prepare_checkout(mastername, buildername)
17 api.auto_bisect.run_bisect_script() 19 api.auto_bisect.run_bisect_script()
18 20
19 def GenTests(api): 21 def GenTests(api):
20 yield (api.test('basic') 22 yield (api.test('basic')
21 +api.properties.tryserver( 23 +api.properties.tryserver(
22 mastername='tryserver.chromium.perf', 24 mastername='tryserver.chromium.perf',
23 buildername='linux_perf_bisect')) 25 buildername='linux_perf_bisect'))
OLDNEW
« no previous file with comments | « scripts/slave/recipes/bisect.py ('k') | scripts/slave/recipes/blink_downstream.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698