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

Side by Side Diff: slave/skia_slave_scripts/compile.py

Issue 26005002: Increase Compile timeout (Closed) Base URL: http://skia.googlecode.com/svn/buildbot/
Patch Set: Created 7 years, 2 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """ Compile step """ 6 """ Compile step """
7 7
8 from build_step import BuildStep 8 from build_step import BuildStep
9 import sys 9 import sys
10 10
11 11
12 class Compile(BuildStep): 12 class Compile(BuildStep):
13 def __init__(self, timeout=9600, no_output_timeout=9600, **kwargs):
14 super (Compile, self).__init__(
15 timeout=timeout,
16 no_output_timeout=no_output_timeout,
17 **kwargs)
18
13 def _Run(self): 19 def _Run(self):
14 self._flavor_utils.Compile(self._args['target']) 20 self._flavor_utils.Compile(self._args['target'])
15 21
16 22
17 if '__main__' == __name__: 23 if '__main__' == __name__:
18 sys.exit(BuildStep.RunBuildStep(Compile)) 24 sys.exit(BuildStep.RunBuildStep(Compile))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698