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

Unified Diff: dart/tools/bots/bot.py

Issue 114103002: Add annotated steps support for dart2js-full-... builders (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | dart/tools/bots/compiler.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/bots/bot.py
diff --git a/dart/tools/bots/bot.py b/dart/tools/bots/bot.py
index f9fcd0d67f91c72ef9c6ad2384328c7c8305aa19..53af19d380a7e95566989349fe8468a782501b96 100644
--- a/dart/tools/bots/bot.py
+++ b/dart/tools/bots/bot.py
@@ -38,11 +38,13 @@ class BuildInfo(object):
- test_set: Specification of a non standard test set or None.
- csp: This is using csp when running
- arch: The architecture to build on.
+ - dart2js_full: Boolean indicating whether this builder will run dart2js
+ on several different runtimes.
"""
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):
+ csp=None, arch=None, dart2js_full=False):
self.compiler = compiler
self.runtime = runtime
self.mode = mode
@@ -55,6 +57,7 @@ class BuildInfo(object):
self.is_buildbot = is_buildbot
self.test_set = test_set
self.csp = csp
+ self.dart2js_full = dart2js_full
if (arch == None):
self.arch = 'ia32'
else:
« no previous file with comments | « no previous file | dart/tools/bots/compiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698