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

Side by Side Diff: masters/master.client.v8/master.cfg

Issue 9663071: V8 Buildbot: Add static initializers check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « no previous file | scripts/master/factory/v8_commands.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # This is the buildmaster config file for the 'v8' bot. It must 8 # This is the buildmaster config file for the 'v8' bot. It must
9 # be installed as 'master.cfg' in your buildmaster's base directory 9 # be installed as 'master.cfg' in your buildmaster's base directory
10 # (although the filename can be changed with the --basedir option to 10 # (although the filename can be changed with the --basedir option to
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 288
289 # The identifier of the factory is the build configuration. If two factories 289 # The identifier of the factory is the build configuration. If two factories
290 # are using the same build configuration, they should have the same identifier. 290 # are using the same build configuration, they should have the same identifier.
291 291
292 f_v8_linux = m_linux.V8Factory( 292 f_v8_linux = m_linux.V8Factory(
293 options=['snapshot=on', 293 options=['snapshot=on',
294 'preparser', 294 'preparser',
295 'cctests', 295 'cctests',
296 'd8', 296 'd8',
297 '--build-tool=scons_v8'], 297 '--build-tool=scons_v8'],
298 tests=['v8testing', 'v8_es5conform', 'sputnik', 'mozilla', 'presubmit']) 298 tests=['v8testing', 'v8initializers', 'v8_es5conform', 'sputnik', 'mozilla',
299 'presubmit'])
299 300
300 301
301 f_v8_linux_shared = m_linux.V8Factory( 302 f_v8_linux_shared = m_linux.V8Factory(
302 options=['library=shared', 303 options=['library=shared',
303 'snapshot=on', 304 'snapshot=on',
304 'preparser', 305 'preparser',
305 'cctests', 306 'cctests',
306 'd8', 307 'd8',
307 '--build-tool=scons_v8'], 308 '--build-tool=scons_v8'],
308 tests=['v8testing', 'v8_es5conform', 'sputnik', 'mozilla']) 309 tests=['v8testing', 'v8_es5conform', 'sputnik', 'mozilla'])
(...skipping 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 extraRecipients=['mstarzinger@chromium.org'], 1561 extraRecipients=['mstarzinger@chromium.org'],
1561 lookup=master_utils.FilterDomain()) 1562 lookup=master_utils.FilterDomain())
1562 c['status'].append(mn) 1563 c['status'].append(mn)
1563 1564
1564 ####### PROJECT IDENTITY 1565 ####### PROJECT IDENTITY
1565 1566
1566 # Buildbot master url: 1567 # Buildbot master url:
1567 c['buildbotURL'] = 'http://build.chromium.org/p/client.v8/' 1568 c['buildbotURL'] = 'http://build.chromium.org/p/client.v8/'
1568 c['projectName'] = ActiveMaster.project_name 1569 c['projectName'] = ActiveMaster.project_name
1569 c['projectURL'] = config.Master.project_url 1570 c['projectURL'] = config.Master.project_url
OLDNEW
« no previous file with comments | « no previous file | scripts/master/factory/v8_commands.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698