| 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-chromiumos-archive', | 9 'build_gs_bucket': 'chromium-chromiumos-archive', |
| 10 }, | 10 }, |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 'bot_type': 'builder', | 261 'bot_type': 'builder', |
| 262 'disable_tests': True, | 262 'disable_tests': True, |
| 263 'compile_targets': [ | 263 'compile_targets': [ |
| 264 'chrome', | 264 'chrome', |
| 265 'chrome_initial', | 265 'chrome_initial', |
| 266 ], | 266 ], |
| 267 'testing': { | 267 'testing': { |
| 268 'platform': 'linux', | 268 'platform': 'linux', |
| 269 }, | 269 }, |
| 270 } | 270 } |
| OLD | NEW |