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

Unified Diff: tools/bots/bot.py

Issue 12383020: Add csp option to annotated steps for dart2js bots (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 19201)
+++ tools/bots/bot.py (working copy)
@@ -42,7 +42,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):
+ total_shards=None, is_buildbot=False, test_set=None,
+ csp=None):
self.compiler = compiler
self.runtime = runtime
self.mode = mode
@@ -54,6 +55,7 @@
self.total_shards = total_shards
self.is_buildbot = is_buildbot
self.test_set = test_set
+ self.csp = csp
def PrintBuildInfo(self):
shard_description = ""
« 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