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

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

Issue 1840063002: Recipe for Headless Linux bot (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove compile_targets Created 4 years, 8 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
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 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after
1765 steps.generate_isolated_script, 1765 steps.generate_isolated_script,
1766 ], 1766 ],
1767 'parent_buildername': 'Win Builder (ANGLE)', 1767 'parent_buildername': 'Win Builder (ANGLE)',
1768 'testing': { 1768 'testing': {
1769 'platform': 'win', 1769 'platform': 'win',
1770 }, 1770 },
1771 'enable_swarming': True, 1771 'enable_swarming': True,
1772 'use_isolate': True, 1772 'use_isolate': True,
1773 }, 1773 },
1774 1774
1775 'Headless Linux (dbg)': {
1776 'chromium_config': 'chromium',
1777 'chromium_apply_config': ['mb'],
1778 'gclient_config': 'chromium',
1779 'chromium_config_kwargs': {
1780 'BUILD_CONFIG': 'Debug',
1781 'TARGET_BITS': 64,
1782 'TARGET_PLATFORM': 'linux',
1783 },
1784 'bot_type': 'builder_tester',
1785 'test_generators': [
1786 steps.generate_gtest,
1787 ],
1788 'testing': {
1789 'platform': 'linux',
1790 },
1791 },
1792
1775 'Android Builder (dbg)': { 1793 'Android Builder (dbg)': {
1776 'chromium_config': 'android', 1794 'chromium_config': 'android',
1777 'chromium_apply_config': ['chrome_with_codecs'], 1795 'chromium_apply_config': ['chrome_with_codecs'],
1778 'gclient_config': 'chromium', 1796 'gclient_config': 'chromium',
1779 'gclient_apply_config': ['android'], 1797 'gclient_apply_config': ['android'],
1780 'chromium_config_kwargs': { 1798 'chromium_config_kwargs': {
1781 'BUILD_CONFIG': 'Debug', 1799 'BUILD_CONFIG': 'Debug',
1782 'TARGET_BITS': 32, 1800 'TARGET_BITS': 32,
1783 'TARGET_PLATFORM': 'android', 1801 'TARGET_PLATFORM': 'android',
1784 }, 1802 },
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
2070 'compile_targets': [ 2088 'compile_targets': [
2071 'chrome', 2089 'chrome',
2072 ], 2090 ],
2073 'enable_swarming': True, 2091 'enable_swarming': True,
2074 'testing': { 2092 'testing': {
2075 'platform': 'win', 2093 'platform': 'win',
2076 }, 2094 },
2077 }, 2095 },
2078 }, 2096 },
2079 } 2097 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698