| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'BUILD_CONFIG': 'Debug', | 163 'BUILD_CONFIG': 'Debug', |
| 164 'TARGET_BITS': 64, | 164 'TARGET_BITS': 64, |
| 165 }, | 165 }, |
| 166 'bot_type': 'tester', | 166 'bot_type': 'tester', |
| 167 'parent_buildername': 'Linux ChromiumOS Builder (dbg)', | 167 'parent_buildername': 'Linux ChromiumOS Builder (dbg)', |
| 168 'testing': { | 168 'testing': { |
| 169 'platform': 'linux', | 169 'platform': 'linux', |
| 170 }, | 170 }, |
| 171 'enable_swarming': True, | 171 'enable_swarming': True, |
| 172 }, | 172 }, |
| 173 |
| 174 # Add a coverage builder to exercise configs that are leveraged in other |
| 175 # recipe collections to build chrome packages: |
| 176 # - "ignore_deps_changes" |
| 177 'Package Builder (Coverage)': { |
| 178 'chromium_config': 'chromium', |
| 179 'chromium_apply_config': ['chromeos', 'ninja_confirm_noop', |
| 180 'ignore_deps_changes', 'mb'], |
| 181 'gclient_config': 'chromium', |
| 182 'chromium_config_kwargs': { |
| 183 'BUILD_CONFIG': 'Debug', |
| 184 'TARGET_BITS': 64, |
| 185 }, |
| 186 'bot_type': 'builder', |
| 187 'testing': { |
| 188 'platform': 'linux', |
| 189 }, |
| 190 }, |
| 173 }, | 191 }, |
| 174 } | 192 } |
| 175 | 193 |
| 176 # Simple Chrome compile-only builders. | 194 # Simple Chrome compile-only builders. |
| 177 for board in ('x86-generic', 'amd64-generic', 'daisy'): | 195 for board in ('x86-generic', 'amd64-generic', 'daisy'): |
| 178 SPEC['builders']['ChromiumOS %s Compile' % (board,)] = { | 196 SPEC['builders']['ChromiumOS %s Compile' % (board,)] = { |
| 179 'chromium_config': 'chromium', | 197 'chromium_config': 'chromium', |
| 180 'chromium_apply_config': ['chromeos', 'mb', 'ninja_confirm_noop'], | 198 'chromium_apply_config': ['chromeos', 'mb', 'ninja_confirm_noop'], |
| 181 'gclient_config': 'chromium', | 199 'gclient_config': 'chromium', |
| 182 'chromium_config_kwargs': { | 200 'chromium_config_kwargs': { |
| 183 'BUILD_CONFIG': 'Release', | 201 'BUILD_CONFIG': 'Release', |
| 184 'TARGET_PLATFORM': 'chromeos', | 202 'TARGET_PLATFORM': 'chromeos', |
| 185 'TARGET_CROS_BOARD': board, | 203 'TARGET_CROS_BOARD': board, |
| 186 }, | 204 }, |
| 187 'bot_type': 'builder', | 205 'bot_type': 'builder', |
| 188 'compile_targets': [ | 206 'compile_targets': [ |
| 189 'chromiumos_preflight', | 207 'chromiumos_preflight', |
| 190 ], | 208 ], |
| 191 'testing': { | 209 'testing': { |
| 192 'platform': 'linux', | 210 'platform': 'linux', |
| 193 }, | 211 }, |
| 194 } | 212 } |
| OLD | NEW |