OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2010 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 """Set of utilities to add commands to a buildbot factory. |
| 6 |
| 7 This is based on commands.py and adds pagespeed-specific commands.""" |
| 8 |
| 9 import config |
| 10 |
| 11 from master.factory import commands |
| 12 |
| 13 class PageSpeedCommands(commands.FactoryCommands): |
| 14 """Encapsulates methods to add chromium commands to a buildbot factory.""" |
| 15 |
| 16 def __init__(self, factory=None, identifier=None, target=None, |
| 17 build_dir=None, target_platform=None): |
| 18 |
| 19 commands.FactoryCommands.__init__(self, factory, identifier, |
| 20 target, build_dir, target_platform) |
OLD | NEW |