| 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 13 matching lines...) Expand all Loading... |
| 24 'all', | 24 'all', |
| 25 ], | 25 ], |
| 26 'test_generators': [ | 26 'test_generators': [ |
| 27 steps.generate_gtest, | 27 steps.generate_gtest, |
| 28 steps.generate_script, | 28 steps.generate_script, |
| 29 steps.generate_isolated_script, | 29 steps.generate_isolated_script, |
| 30 ], | 30 ], |
| 31 'archive_build': True, | 31 'archive_build': True, |
| 32 'gs_bucket': 'chromium-browser-snapshots', | 32 'gs_bucket': 'chromium-browser-snapshots', |
| 33 'gs_acl': 'public-read', | 33 'gs_acl': 'public-read', |
| 34 'checkout_dir': 'win_archive', |
| 34 'testing': { | 35 'testing': { |
| 35 'platform': 'win', | 36 'platform': 'win', |
| 36 }, | 37 }, |
| 37 }, | 38 }, |
| 38 'Win x64': { | 39 'Win x64': { |
| 39 'chromium_config': 'chromium', | 40 'chromium_config': 'chromium', |
| 40 'chromium_apply_config': [ | 41 'chromium_apply_config': [ |
| 41 'clobber', | 42 'clobber', |
| 42 'isolation_mode_noop', | 43 'isolation_mode_noop', |
| 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', |
| 53 ], | 54 ], |
| 54 'test_generators': [ | 55 'test_generators': [ |
| 55 steps.generate_gtest, | 56 steps.generate_gtest, |
| 56 steps.generate_script, | 57 steps.generate_script, |
| 57 steps.generate_isolated_script, | 58 steps.generate_isolated_script, |
| 58 ], | 59 ], |
| 59 'archive_build': True, | 60 'archive_build': True, |
| 60 'gs_bucket': 'chromium-browser-snapshots', | 61 'gs_bucket': 'chromium-browser-snapshots', |
| 61 'gs_acl': 'public-read', | 62 'gs_acl': 'public-read', |
| 63 'checkout_dir': 'win_x64_archive', |
| 62 'testing': { | 64 'testing': { |
| 63 'platform': 'win', | 65 'platform': 'win', |
| 64 }, | 66 }, |
| 65 }, | 67 }, |
| 66 'Mac': { | 68 'Mac': { |
| 67 'chromium_config': 'chromium', | 69 'chromium_config': 'chromium', |
| 68 'chromium_apply_config': [ | 70 'chromium_apply_config': [ |
| 69 'clobber', | 71 'clobber', |
| 70 'isolation_mode_noop', | 72 'isolation_mode_noop', |
| 71 'mb', | 73 'mb', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ], | 147 ], |
| 146 'archive_build': True, | 148 'archive_build': True, |
| 147 'gs_bucket': 'chromium-browser-snapshots', | 149 'gs_bucket': 'chromium-browser-snapshots', |
| 148 'gs_acl': 'public-read', | 150 'gs_acl': 'public-read', |
| 149 'testing': { | 151 'testing': { |
| 150 'platform': 'linux', | 152 'platform': 'linux', |
| 151 }, | 153 }, |
| 152 }, | 154 }, |
| 153 }, | 155 }, |
| 154 } | 156 } |
| OLD | NEW |