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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 1374653002: Enable errorprone on the chromium.fyi Errorprone Builder (Reland). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 2 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from . import steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 SPEC = { 9 SPEC = {
10 'settings': { 10 'settings': {
(...skipping 1576 matching lines...) Expand 10 before | Expand all | Expand 10 after
1587 1587
1588 'Android Builder (dbg)': { 1588 'Android Builder (dbg)': {
1589 'chromium_config': 'android', 1589 'chromium_config': 'android',
1590 'gclient_config': 'chromium', 1590 'gclient_config': 'chromium',
1591 'gclient_apply_config': ['android'], 1591 'gclient_apply_config': ['android'],
1592 'chromium_config_kwargs': { 1592 'chromium_config_kwargs': {
1593 'BUILD_CONFIG': 'Debug', 1593 'BUILD_CONFIG': 'Debug',
1594 'TARGET_BITS': 32, 1594 'TARGET_BITS': 32,
1595 'TARGET_PLATFORM': 'android', 1595 'TARGET_PLATFORM': 'android',
1596 }, 1596 },
1597 'chromium_apply_config': ['errorprone'],
1597 'android_config': 'main_builder', 1598 'android_config': 'main_builder',
1598 'bot_type': 'builder', 1599 'bot_type': 'builder',
1599 'compile_targets': [ 1600 'compile_targets': [
1600 'chromedriver_webview_shell_apk', 1601 'chromedriver_webview_shell_apk',
1601 ], 1602 ],
1602 'testing': { 1603 'testing': {
1603 'platform': 'linux', 1604 'platform': 'linux',
1604 }, 1605 },
1605 }, 1606 },
1606 1607
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1827 steps.generate_gtest, 1828 steps.generate_gtest,
1828 steps.generate_script, 1829 steps.generate_script,
1829 steps.generate_isolated_script, 1830 steps.generate_isolated_script,
1830 ], 1831 ],
1831 'testing': { 1832 'testing': {
1832 'platform': 'linux', 1833 'platform': 'linux',
1833 }, 1834 },
1834 }, 1835 },
1835 }, 1836 },
1836 } 1837 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698