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

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: Add "(dbg)" to bot name 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 'compile_targets': [
1786 'headless_lib',
1787 'headless_tests',
1788 ],
Dirk Pranke 2016/03/31 18:42:16 You should list the compile_targets in //testing/b
perezju 2016/04/01 10:47:51 I went for removing the compile_targets here. Sinc
1789 'test_generators': [
1790 steps.generate_gtest,
1791 ],
1792 'testing': {
1793 'platform': 'linux',
1794 },
1795 },
1796
1775 'Android Builder (dbg)': { 1797 'Android Builder (dbg)': {
1776 'chromium_config': 'android', 1798 'chromium_config': 'android',
1777 'chromium_apply_config': ['chrome_with_codecs'], 1799 'chromium_apply_config': ['chrome_with_codecs'],
1778 'gclient_config': 'chromium', 1800 'gclient_config': 'chromium',
1779 'gclient_apply_config': ['android'], 1801 'gclient_apply_config': ['android'],
1780 'chromium_config_kwargs': { 1802 'chromium_config_kwargs': {
1781 'BUILD_CONFIG': 'Debug', 1803 'BUILD_CONFIG': 'Debug',
1782 'TARGET_BITS': 32, 1804 'TARGET_BITS': 32,
1783 'TARGET_PLATFORM': 'android', 1805 'TARGET_PLATFORM': 'android',
1784 }, 1806 },
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
2070 'compile_targets': [ 2092 'compile_targets': [
2071 'chrome', 2093 'chrome',
2072 ], 2094 ],
2073 'enable_swarming': True, 2095 'enable_swarming': True,
2074 'testing': { 2096 'testing': {
2075 'platform': 'win', 2097 'platform': 'win',
2076 }, 2098 },
2077 }, 2099 },
2078 }, 2100 },
2079 } 2101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698