| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 SPEC = { | |
| 6 'builders': { | |
| 7 'Google Chrome ChromeOS': { | |
| 8 'chromium_config': 'chromium_official', | |
| 9 'chromium_apply_config': ['chromeos'], | |
| 10 'gclient_config': 'chromium', | |
| 11 'gclient_apply_config': ['chrome_internal'], | |
| 12 'chromium_config_kwargs': { | |
| 13 'BUILD_CONFIG': 'Release', | |
| 14 'TARGET_BITS': 64, | |
| 15 }, | |
| 16 'compile_targets': [ | |
| 17 'chrome', | |
| 18 'chrome_sandbox', | |
| 19 'linux_symbols', | |
| 20 'symupload' | |
| 21 ], | |
| 22 'testing': { | |
| 23 'platform': 'linux', | |
| 24 }, | |
| 25 }, | |
| 26 'Google Chrome Linux': { | |
| 27 'chromium_config': 'chromium_official', | |
| 28 'gclient_config': 'chromium', | |
| 29 'gclient_apply_config': ['chrome_internal'], | |
| 30 'chromium_config_kwargs': { | |
| 31 'BUILD_CONFIG': 'Release', | |
| 32 'TARGET_BITS': 32, | |
| 33 }, | |
| 34 'testing': { | |
| 35 'platform': 'linux', | |
| 36 }, | |
| 37 }, | |
| 38 'Google Chrome Linux x64': { | |
| 39 'chromium_config': 'chromium_official', | |
| 40 'gclient_config': 'chromium', | |
| 41 'gclient_apply_config': ['chrome_internal'], | |
| 42 'chromium_config_kwargs': { | |
| 43 'BUILD_CONFIG': 'Release', | |
| 44 'TARGET_BITS': 64, | |
| 45 }, | |
| 46 'testing': { | |
| 47 'platform': 'linux', | |
| 48 }, | |
| 49 }, | |
| 50 'Google Chrome Mac': { | |
| 51 'chromium_config': 'chromium_official', | |
| 52 'gclient_config': 'chromium', | |
| 53 'gclient_apply_config': ['chrome_internal'], | |
| 54 'chromium_config_kwargs': { | |
| 55 'BUILD_CONFIG': 'Release', | |
| 56 'TARGET_BITS': 64, | |
| 57 }, | |
| 58 'testing': { | |
| 59 'platform': 'mac', | |
| 60 }, | |
| 61 }, | |
| 62 'Google Chrome Win': { | |
| 63 'chromium_config': 'chromium_official', | |
| 64 'gclient_config': 'chromium', | |
| 65 'gclient_apply_config': ['chrome_internal'], | |
| 66 'chromium_config_kwargs': { | |
| 67 'BUILD_CONFIG': 'Release', | |
| 68 'TARGET_BITS': 32, | |
| 69 }, | |
| 70 'testing': { | |
| 71 'platform': 'win', | |
| 72 }, | |
| 73 }, | |
| 74 }, | |
| 75 } | |
| OLD | NEW |