| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # This file is used by scripts/tools/buildbot-tool to generate master configs. |
| 6 |
| 7 import os |
| 8 |
| 9 from twisted.application import service |
| 10 from buildbot.master import BuildMaster |
| 11 |
| 12 basedir = os.path.dirname(os.path.abspath(__file__)) |
| 13 configfile = 'master.cfg' |
| 14 |
| 15 application = service.Application('buildmaster') |
| 16 BuildMaster(basedir, configfile).setServiceParent(application) |
| OLD | NEW |