| 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 }, | 10 }, |
| 11 'builders': { | 11 'builders': { |
| 12 'Linux ARM': { |
| 13 'chromium_config': 'chromium', |
| 14 'gclient_config': 'chromium', |
| 15 'chromium_config_kwargs': { |
| 16 'BUILD_CONFIG': 'Release', |
| 17 'TARGET_ARCH': 'arm', |
| 18 'TARGET_BITS': 32, |
| 19 }, |
| 20 'bot_type': 'builder', |
| 21 'compile_targets': [ |
| 22 'all', |
| 23 ], |
| 24 'use_isolate': True, |
| 25 'testing': { |
| 26 'platform': 'linux', |
| 27 }, |
| 28 }, |
| 12 'Linux Builder': { | 29 'Linux Builder': { |
| 13 'chromium_config': 'chromium', | 30 'chromium_config': 'chromium', |
| 14 'gclient_config': 'chromium', | 31 'gclient_config': 'chromium', |
| 15 'chromium_config_kwargs': { | 32 'chromium_config_kwargs': { |
| 16 'BUILD_CONFIG': 'Release', | 33 'BUILD_CONFIG': 'Release', |
| 17 'TARGET_BITS': 64, | 34 'TARGET_BITS': 64, |
| 18 }, | 35 }, |
| 19 'bot_type': 'builder', | 36 'bot_type': 'builder', |
| 20 'compile_targets': [ | 37 'compile_targets': [ |
| 21 'chromium_swarm_tests', | 38 'chromium_swarm_tests', |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 'TARGET_BITS': 32, | 440 'TARGET_BITS': 32, |
| 424 'TARGET_PLATFORM': 'android', | 441 'TARGET_PLATFORM': 'android', |
| 425 }, | 442 }, |
| 426 'android_config': 'cast_builder', | 443 'android_config': 'cast_builder', |
| 427 'testing': { | 444 'testing': { |
| 428 'platform': 'linux', | 445 'platform': 'linux', |
| 429 }, | 446 }, |
| 430 }, | 447 }, |
| 431 }, | 448 }, |
| 432 } | 449 } |
| OLD | NEW |