| OLD | NEW |
| 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')) |
| OLD | NEW |