| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'builders': { | 8 'builders': { |
| 9 'Win': { | 9 'Win': { |
| 10 'chromium_config': 'chromium', | 10 'chromium_config': 'chromium', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 'gs_acl': 'public-read', | 33 'gs_acl': 'public-read', |
| 34 'testing': { | 34 'testing': { |
| 35 'platform': 'win', | 35 'platform': 'win', |
| 36 }, | 36 }, |
| 37 }, | 37 }, |
| 38 'Win x64': { | 38 'Win x64': { |
| 39 'chromium_config': 'chromium', | 39 'chromium_config': 'chromium', |
| 40 'chromium_apply_config': [ | 40 'chromium_apply_config': [ |
| 41 'clobber', | 41 'clobber', |
| 42 'isolation_mode_noop', | 42 'isolation_mode_noop', |
| 43 'mb', |
| 43 'ninja_confirm_noop', | 44 'ninja_confirm_noop', |
| 44 'no_dump_symbols', | 45 'no_dump_symbols', |
| 45 ], | 46 ], |
| 46 'gclient_config': 'chromium', | 47 'gclient_config': 'chromium', |
| 47 'chromium_config_kwargs': { | 48 'chromium_config_kwargs': { |
| 48 'BUILD_CONFIG': 'Release', | 49 'BUILD_CONFIG': 'Release', |
| 49 'TARGET_BITS': 64, | 50 'TARGET_BITS': 64, |
| 50 }, | 51 }, |
| 51 'compile_targets': [ | 52 'compile_targets': [ |
| 52 'all', | 53 'all', |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ], | 146 ], |
| 146 'archive_build': True, | 147 'archive_build': True, |
| 147 'gs_bucket': 'chromium-browser-snapshots', | 148 'gs_bucket': 'chromium-browser-snapshots', |
| 148 'gs_acl': 'public-read', | 149 'gs_acl': 'public-read', |
| 149 'testing': { | 150 'testing': { |
| 150 'platform': 'linux', | 151 'platform': 'linux', |
| 151 }, | 152 }, |
| 152 }, | 153 }, |
| 153 }, | 154 }, |
| 154 } | 155 } |
| OLD | NEW |