Chromium Code Reviews| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 'TARGET_BITS': 64, | 111 'TARGET_BITS': 64, |
| 112 }, | 112 }, |
| 113 'test_generators': [ | 113 'test_generators': [ |
| 114 steps.generate_gtest, | 114 steps.generate_gtest, |
| 115 steps.generate_script, | 115 steps.generate_script, |
| 116 steps.generate_isolated_script, | 116 steps.generate_isolated_script, |
| 117 ], | 117 ], |
| 118 'archive_build': True, | 118 'archive_build': True, |
| 119 'gs_bucket': 'chromium-browser-snapshots', | 119 'gs_bucket': 'chromium-browser-snapshots', |
| 120 'gs_acl': 'public-read', | 120 'gs_acl': 'public-read', |
| 121 'checkout_dir': 'linux_clobber', | |
|
Paweł Hajdan Jr.
2016/07/20 10:53:59
This is where we set a different checkout for clob
tandrii(chromium)
2016/07/20 11:13:42
Acknowledged.
| |
| 121 'testing': { | 122 'testing': { |
| 122 'platform': 'linux', | 123 'platform': 'linux', |
| 123 }, | 124 }, |
| 124 }, | 125 }, |
| 125 'Android': { | 126 'Android': { |
| 126 'chromium_config': 'android', | 127 'chromium_config': 'android', |
| 127 'chromium_apply_config': [ | 128 'chromium_apply_config': [ |
| 128 'clobber', | 129 'clobber', |
| 129 'isolation_mode_noop', | 130 'isolation_mode_noop', |
| 130 'mb', | 131 'mb', |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 148 ], | 149 ], |
| 149 'archive_build': True, | 150 'archive_build': True, |
| 150 'gs_bucket': 'chromium-browser-snapshots', | 151 'gs_bucket': 'chromium-browser-snapshots', |
| 151 'gs_acl': 'public-read', | 152 'gs_acl': 'public-read', |
| 152 'testing': { | 153 'testing': { |
| 153 'platform': 'linux', | 154 'platform': 'linux', |
| 154 }, | 155 }, |
| 155 }, | 156 }, |
| 156 }, | 157 }, |
| 157 } | 158 } |
| OLD | NEW |