| 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 # WARNING: src-side runtest.py is only tested with chromium CQ builders. | 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 gs_acl='public-read', | 63 gs_acl='public-read', |
| 64 ), | 64 ), |
| 65 ], | 65 ], |
| 66 'testing': { | 66 'testing': { |
| 67 'platform': 'linux', | 67 'platform': 'linux', |
| 68 }, | 68 }, |
| 69 }, | 69 }, |
| 70 | 70 |
| 71 'Linux ChromiumOS Builder': { | 71 'Linux ChromiumOS Builder': { |
| 72 'chromium_config': 'chromium', | 72 'chromium_config': 'chromium', |
| 73 'chromium_apply_config': ['chromeos', 'ninja_confirm_noop'], | 73 'chromium_apply_config': ['chromeos', 'ninja_confirm_noop', 'mb'], |
| 74 'gclient_config': 'chromium', | 74 'gclient_config': 'chromium', |
| 75 'chromium_config_kwargs': { | 75 'chromium_config_kwargs': { |
| 76 'BUILD_CONFIG': 'Release', | 76 'BUILD_CONFIG': 'Release', |
| 77 'TARGET_BITS': 64, | 77 'TARGET_BITS': 64, |
| 78 }, | 78 }, |
| 79 'bot_type': 'builder', | 79 'bot_type': 'builder', |
| 80 'compile_targets': [ | 80 'compile_targets': [ |
| 81 'aura_builder', | 81 'aura_builder', |
| 82 ], | 82 ], |
| 83 'testing': { | 83 'testing': { |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 'TARGET_CROS_BOARD': board, | 235 'TARGET_CROS_BOARD': board, |
| 236 }, | 236 }, |
| 237 'bot_type': 'builder', | 237 'bot_type': 'builder', |
| 238 'compile_targets': [ | 238 'compile_targets': [ |
| 239 'chromiumos_preflight', | 239 'chromiumos_preflight', |
| 240 ], | 240 ], |
| 241 'testing': { | 241 'testing': { |
| 242 'platform': 'linux', | 242 'platform': 'linux', |
| 243 }, | 243 }, |
| 244 } | 244 } |
| OLD | NEW |