OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 master import master_config | 5 from master import master_config |
6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
7 | 7 |
8 defaults = {} | 8 defaults = {} |
9 | 9 |
10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 options=['--compiler=goma'], | 119 options=['--compiler=goma'], |
120 factory_properties={ | 120 factory_properties={ |
121 'archive_build': True, | 121 'archive_build': True, |
122 'gs_bucket': 'gs://chromium-browser-snapshots', | 122 'gs_bucket': 'gs://chromium-browser-snapshots', |
123 'show_perf_results': True, | 123 'show_perf_results': True, |
124 'generate_gtest_json': True, | 124 'generate_gtest_json': True, |
125 'perf_id': 'chromium-rel-linux-64', | 125 'perf_id': 'chromium-rel-linux-64', |
126 'expectations': True, | 126 'expectations': True, |
127 'gclient_env': {'GYP_DEFINES':'target_arch=x64'}})) | 127 'gclient_env': {'GYP_DEFINES':'target_arch=x64'}})) |
128 | 128 |
129 B('Arm', 'arm_clobber', 'compile|testers', 'chromium', notify_on_missing=True) | |
130 F('arm_clobber', linux().ChromiumOSFactory( | |
131 clobber=True, | |
132 target='Release', | |
133 tests=[], | |
134 compile_timeout=3600, | |
135 options=['--build-tool=make', | |
136 '--crosstool=' + crosstool_prefix, | |
137 'chromeos_builder'], | |
138 factory_properties={'archive_build': True, | |
139 'gs_bucket': 'gs://chromium-browser-snapshots', | |
140 'gclient_env': arm_gclient_env})) | |
141 | |
142 def Update(config, active_master, c): | 129 def Update(config, active_master, c): |
143 return helper.Update(c) | 130 return helper.Update(c) |
OLD | NEW |