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

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

Issue 1371973002: Revert of 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'],
1598 'android_config': 'main_builder', 1597 'android_config': 'main_builder',
1599 'bot_type': 'builder', 1598 'bot_type': 'builder',
1600 'compile_targets': [ 1599 'compile_targets': [
1601 'chromedriver_webview_shell_apk', 1600 'chromedriver_webview_shell_apk',
1602 ], 1601 ],
1603 'testing': { 1602 'testing': {
1604 'platform': 'linux', 1603 'platform': 'linux',
1605 }, 1604 },
1606 }, 1605 },
1607 1606
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1828 steps.generate_gtest, 1827 steps.generate_gtest,
1829 steps.generate_script, 1828 steps.generate_script,
1830 steps.generate_isolated_script, 1829 steps.generate_isolated_script,
1831 ], 1830 ],
1832 'testing': { 1831 'testing': {
1833 'platform': 'linux', 1832 'platform': 'linux',
1834 }, 1833 },
1835 }, 1834 },
1836 }, 1835 },
1837 } 1836 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698