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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.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 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 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after
1552 1552
1553 'Android Builder (dbg)': { 1553 'Android Builder (dbg)': {
1554 'chromium_config': 'android', 1554 'chromium_config': 'android',
1555 'gclient_config': 'chromium', 1555 'gclient_config': 'chromium',
1556 'gclient_apply_config': ['android'], 1556 'gclient_apply_config': ['android'],
1557 'chromium_config_kwargs': { 1557 'chromium_config_kwargs': {
1558 'BUILD_CONFIG': 'Debug', 1558 'BUILD_CONFIG': 'Debug',
1559 'TARGET_BITS': 32, 1559 'TARGET_BITS': 32,
1560 'TARGET_PLATFORM': 'android', 1560 'TARGET_PLATFORM': 'android',
1561 }, 1561 },
1562 'android_config': 'main_builder', 1562 'android_config': 'errorprone_builder',
Paweł Hajdan Jr. 2015/08/28 11:44:25 Why not just use chromium_apply_config to apply th
mikecase (-- gone --) 2015/08/28 18:36:06 Done.
1563 'bot_type': 'builder', 1563 'bot_type': 'builder',
1564 'compile_targets': [ 1564 'compile_targets': [
1565 'chromedriver_webview_shell_apk', 1565 'chromedriver_webview_shell_apk',
1566 ], 1566 ],
1567 'testing': { 1567 'testing': {
1568 'platform': 'linux', 1568 'platform': 'linux',
1569 }, 1569 },
1570 }, 1570 },
1571 1571
1572 'Android Tests (L Nexus5)(dbg)': { 1572 'Android Tests (L Nexus5)(dbg)': {
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1772 'test_generators': [ 1772 'test_generators': [
1773 steps.generate_gtest, 1773 steps.generate_gtest,
1774 steps.generate_script, 1774 steps.generate_script,
1775 ], 1775 ],
1776 'testing': { 1776 'testing': {
1777 'platform': 'linux', 1777 'platform': 'linux',
1778 }, 1778 },
1779 }, 1779 },
1780 }, 1780 },
1781 } 1781 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698