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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: slave/skia_slave_scripts/compile.py
===================================================================
--- slave/skia_slave_scripts/compile.py (revision 11470)
+++ slave/skia_slave_scripts/compile.py (working copy)
@@ -10,6 +10,12 @@
class Compile(BuildStep):
+ def __init__(self, timeout=9600, no_output_timeout=9600, **kwargs):
+ super (Compile, self).__init__(
+ timeout=timeout,
+ no_output_timeout=no_output_timeout,
+ **kwargs)
+
def _Run(self):
self._flavor_utils.Compile(self._args['target'])
« 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