| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |