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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/config.py

Issue 1305303002: Enable errorprone compiler on the chromium.fyi Android Builder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import types 5 import types
6 6
7 from recipe_engine.config import config_item_context, ConfigGroup 7 from recipe_engine.config import config_item_context, ConfigGroup
8 from recipe_engine.config import ConfigList, Dict, List, Single, Static 8 from recipe_engine.config import ConfigList, Dict, List, Single, Static
9 from recipe_engine.config_types import Path 9 from recipe_engine.config_types import Path
10 10
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 def perf(c): 187 def perf(c):
188 pass 188 pass
189 189
190 @config_ctx() 190 @config_ctx()
191 def webview_perf(c): 191 def webview_perf(c):
192 pass 192 pass
193 193
194 @config_ctx() 194 @config_ctx()
195 def cast_builder(c): 195 def cast_builder(c):
196 pass 196 pass
197
198 @config_ctx(includes=['main_builder'])
199 def errorprone_builder(c):
Paweł Hajdan Jr. 2015/08/28 11:44:25 Why is this needed?
mikecase (-- gone --) 2015/08/28 18:36:06 Removed.
200 pass
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698