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

Unified Diff: tools/bots/bot.py

Issue 303483004: Add support for running dart2js in batch mode on the bots (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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 | tools/bots/compiler.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/bot.py
===================================================================
--- tools/bots/bot.py (revision 36614)
+++ tools/bots/bot.py (working copy)
@@ -45,7 +45,8 @@
def __init__(self, compiler, runtime, mode, system, checked=False,
host_checked=False, minified=False, shard_index=None,
total_shards=None, is_buildbot=False, test_set=None,
- csp=None, arch=None, dart2js_full=False, builder_tag=None):
+ csp=None, arch=None, dart2js_full=False, builder_tag=None,
+ batch=False):
self.compiler = compiler
self.runtime = runtime
self.mode = mode
@@ -60,6 +61,7 @@
self.csp = csp
self.dart2js_full = dart2js_full
self.builder_tag = builder_tag
+ self.batch = batch
if (arch == None):
self.arch = 'ia32'
else:
« no previous file with comments | « no previous file | tools/bots/compiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698