| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 | 5 |
| 6 from . import chromium_perf | 6 from . import chromium_perf |
| 7 from . import steps | 7 from . import steps |
| 8 | 8 |
| 9 | 9 |
| 10 SPEC = { | 10 SPEC = { |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 ], | 71 ], |
| 72 'testing': { | 72 'testing': { |
| 73 'platform': 'linux', | 73 'platform': 'linux', |
| 74 }, | 74 }, |
| 75 'tests':[steps.BisectTest()], | 75 'tests':[steps.BisectTest()], |
| 76 'chromium_apply_config': ['chromium_perf'] | 76 'chromium_apply_config': ['chromium_perf'] |
| 77 }, | 77 }, |
| 78 } | 78 } |
| 79 } | 79 } |
| 80 | 80 |
| OLD | NEW |