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

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

Issue 1987433002: Recipe for Blimp Linux bot (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Update hostname to the allocated one. Created 4 years, 7 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 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 1792 matching lines...) Expand 10 before | Expand all | Expand 10 after
1803 }, 1803 },
1804 'bot_type': 'builder_tester', 1804 'bot_type': 'builder_tester',
1805 'test_generators': [ 1805 'test_generators': [
1806 steps.generate_gtest, 1806 steps.generate_gtest,
1807 ], 1807 ],
1808 'testing': { 1808 'testing': {
1809 'platform': 'linux', 1809 'platform': 'linux',
1810 }, 1810 },
1811 }, 1811 },
1812 1812
1813 'Blimp Linux (dbg)': {
1814 'chromium_config': 'chromium',
1815 'chromium_apply_config': ['mb'],
1816 'gclient_config': 'chromium',
1817 'chromium_config_kwargs': {
1818 'BUILD_CONFIG': 'Debug',
1819 'TARGET_BITS': 64,
1820 'TARGET_PLATFORM': 'linux',
1821 },
1822 'bot_type': 'builder_tester',
1823 'test_generators': [
1824 steps.generate_gtest,
1825 ],
1826 'testing': {
1827 'platform': 'linux',
1828 },
1829 },
1830
1813 'Android Builder (dbg)': { 1831 'Android Builder (dbg)': {
1814 'chromium_config': 'android', 1832 'chromium_config': 'android',
1815 'chromium_apply_config': ['chrome_with_codecs', 'mb'], 1833 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
1816 'gclient_config': 'chromium', 1834 'gclient_config': 'chromium',
1817 'gclient_apply_config': ['android'], 1835 'gclient_apply_config': ['android'],
1818 'chromium_config_kwargs': { 1836 'chromium_config_kwargs': {
1819 'BUILD_CONFIG': 'Debug', 1837 'BUILD_CONFIG': 'Debug',
1820 'TARGET_BITS': 32, 1838 'TARGET_BITS': 32,
1821 'TARGET_PLATFORM': 'android', 1839 'TARGET_PLATFORM': 'android',
1822 }, 1840 },
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
2106 'enable_swarming': True, 2124 'enable_swarming': True,
2107 'testing': { 2125 'testing': {
2108 'platform': 'win', 2126 'platform': 'win',
2109 }, 2127 },
2110 }, 2128 },
2111 2129
2112 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, 2130 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC,
2113 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, 2131 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC,
2114 }, 2132 },
2115 } 2133 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698