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-linux-archive', | 9 'build_gs_bucket': 'chromium-linux-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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 'TARGET_BITS': 32, | 253 'TARGET_BITS': 32, |
254 'TARGET_PLATFORM': 'android', | 254 'TARGET_PLATFORM': 'android', |
255 }, | 255 }, |
256 'android_config': 'clang_builder_mb', | 256 'android_config': 'clang_builder_mb', |
257 'bot_type': 'builder_tester', | 257 'bot_type': 'builder_tester', |
258 'testing': { | 258 'testing': { |
259 'platform': 'linux', | 259 'platform': 'linux', |
260 }, | 260 }, |
261 }, | 261 }, |
262 | 262 |
| 263 'Blimp Linux (dbg)': { |
| 264 'chromium_config': 'chromium', |
| 265 'chromium_apply_config': ['mb'], |
| 266 'gclient_config': 'chromium', |
| 267 'chromium_config_kwargs': { |
| 268 'BUILD_CONFIG': 'Debug', |
| 269 'TARGET_BITS': 64, |
| 270 'TARGET_PLATFORM': 'linux', |
| 271 }, |
| 272 'bot_type': 'builder_tester', |
| 273 'test_generators': [ |
| 274 steps.generate_gtest, |
| 275 ], |
| 276 'testing': { |
| 277 'platform': 'linux', |
| 278 }, |
| 279 }, |
| 280 |
263 'Cast Linux': { | 281 'Cast Linux': { |
264 'chromium_config': 'cast_linux', | 282 'chromium_config': 'cast_linux', |
265 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], | 283 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
266 'gclient_config': 'chromium', | 284 'gclient_config': 'chromium', |
267 'chromium_config_kwargs': { | 285 'chromium_config_kwargs': { |
268 'BUILD_CONFIG': 'Release', | 286 'BUILD_CONFIG': 'Release', |
269 'TARGET_BITS': 64, | 287 'TARGET_BITS': 64, |
270 }, | 288 }, |
271 'compile_targets': [ | 289 'compile_targets': [ |
272 'cast_shell', | 290 'cast_shell', |
(...skipping 20 matching lines...) Expand all Loading... |
293 'TARGET_BITS': 32, | 311 'TARGET_BITS': 32, |
294 'TARGET_PLATFORM': 'android', | 312 'TARGET_PLATFORM': 'android', |
295 }, | 313 }, |
296 'android_config': 'cast_builder', | 314 'android_config': 'cast_builder', |
297 'testing': { | 315 'testing': { |
298 'platform': 'linux', | 316 'platform': 'linux', |
299 }, | 317 }, |
300 }, | 318 }, |
301 }, | 319 }, |
302 } | 320 } |
OLD | NEW |