| 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_linux | 6 from . import chromium_linux |
| 7 from . import steps | 7 from . import steps |
| 8 | 8 |
| 9 | 9 |
| 10 SPEC = { | 10 SPEC = { |
| 11 'settings': chromium_linux.SPEC['settings'], | 11 'settings': chromium_linux.SPEC['settings'], |
| 12 'builders': { | 12 'builders': { |
| 13 # This is intended to build in the same was as the main linux builder. | 13 # This is intended to build in the same was as the main linux builder. |
| 14 'linux_full_bisect_builder': chromium_linux.SPEC['builders']['Linux Builder'
], | 14 'linux_full_bisect_builder': chromium_linux.SPEC['builders']['Linux Builder'
], |
| 15 }, | 15 }, |
| 16 } | 16 } |
| OLD | NEW |