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

Side by Side Diff: scripts/master/factory/webm_commands.py

Issue 5285010: Add a basic configuration (gclient sync + build) for pagespeed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: '' Created 10 years 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
(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 webm-specific commands."""
8
9 import config
10
11 from master.factory import commands
12
13 class WebMCommands(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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698