| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'isolation_mode_noop', | 97 'isolation_mode_noop', |
| 98 'mb', | 98 'mb', |
| 99 'ninja_confirm_noop', | 99 'ninja_confirm_noop', |
| 100 'no_dump_symbols', | 100 'no_dump_symbols', |
| 101 ], | 101 ], |
| 102 'gclient_config': 'chromium', | 102 'gclient_config': 'chromium', |
| 103 'chromium_config_kwargs': { | 103 'chromium_config_kwargs': { |
| 104 'BUILD_CONFIG': 'Release', | 104 'BUILD_CONFIG': 'Release', |
| 105 'TARGET_BITS': 64, | 105 'TARGET_BITS': 64, |
| 106 }, | 106 }, |
| 107 'compile_targets': [ | |
| 108 'all', | |
| 109 ], | |
| 110 'test_generators': [ | 107 'test_generators': [ |
| 111 steps.generate_gtest, | 108 steps.generate_gtest, |
| 112 steps.generate_script, | 109 steps.generate_script, |
| 113 steps.generate_isolated_script, | 110 steps.generate_isolated_script, |
| 114 ], | 111 ], |
| 115 'archive_build': True, | 112 'archive_build': True, |
| 116 'gs_bucket': 'chromium-browser-snapshots', | 113 'gs_bucket': 'chromium-browser-snapshots', |
| 117 'gs_acl': 'public-read', | 114 'gs_acl': 'public-read', |
| 118 'testing': { | 115 'testing': { |
| 119 'platform': 'linux', | 116 'platform': 'linux', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 144 ], | 141 ], |
| 145 'archive_build': True, | 142 'archive_build': True, |
| 146 'gs_bucket': 'chromium-browser-snapshots', | 143 'gs_bucket': 'chromium-browser-snapshots', |
| 147 'gs_acl': 'public-read', | 144 'gs_acl': 'public-read', |
| 148 'testing': { | 145 'testing': { |
| 149 'platform': 'linux', | 146 'platform': 'linux', |
| 150 }, | 147 }, |
| 151 }, | 148 }, |
| 152 }, | 149 }, |
| 153 } | 150 } |
| OLD | NEW |