Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: masters/master.chromium/master_full_cfg.py

Issue 8046027: Add a new master for chromium on chromium OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « masters/master.chromium.chromiumos/slaves.cfg ('k') | masters/master.chromium/master_gatekeeper_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698