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

Unified Diff: tools/bots/bot.py

Issue 1087153002: Change annotated steps to support the cps based dart2js backend (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
diff --git a/tools/bots/bot.py b/tools/bots/bot.py
index 9590a493b60d927ba7b737573ff18385bb2c239f..550cb4782c6d073f09eae0f25fd550671d0a76e4 100644
--- a/tools/bots/bot.py
+++ b/tools/bots/bot.py
@@ -41,12 +41,13 @@ class BuildInfo(object):
- dart2js_full: Boolean indicating whether this builder will run dart2js
on several different runtimes.
- builder_tag: A tag indicating a special builder setup.
+ - cps_ir: Run the compiler with the cps based backend
"""
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,
- batch=False):
+ batch=False, cps_ir=False):
self.compiler = compiler
self.runtime = runtime
self.mode = mode
@@ -62,6 +63,7 @@ class BuildInfo(object):
self.dart2js_full = dart2js_full
self.builder_tag = builder_tag
self.batch = batch
+ self.cps_ir = cps_ir
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