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

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

Issue 1836883003: Add config for Chromium Mac 10.11 Force Mac Toolchain (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Also add the builder to FYI 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 | 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'TARGET_BITS': 64, 54 'TARGET_BITS': 64,
55 }, 55 },
56 'test_generators': [ 56 'test_generators': [
57 steps.generate_gtest, 57 steps.generate_gtest,
58 steps.generate_script, 58 steps.generate_script,
59 ], 59 ],
60 'testing': { 60 'testing': {
61 'platform': 'mac', 61 'platform': 'mac',
62 }, 62 },
63 }, 63 },
64 'Chromium Mac 10.11 Force Mac Toolchain': {
65 'chromium_config': 'chromium',
66 'gclient_config': 'chromium',
67 'chromium_config_kwargs': {
68 'BUILD_CONFIG': 'Release',
69 'TARGET_BITS': 64,
70 },
71 'chromium_apply_config': ['force_mac_toolchain'],
72 'test_generators': [
73 steps.generate_gtest,
74 steps.generate_script,
75 ],
76 'testing': {
77 'platform': 'mac',
78 },
79 },
64 'Linux ARM': { 80 'Linux ARM': {
65 'chromium_config': 'chromium', 81 'chromium_config': 'chromium',
66 'gclient_config': 'chromium', 82 'gclient_config': 'chromium',
67 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 83 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
68 'chromium_config_kwargs': { 84 'chromium_config_kwargs': {
69 'BUILD_CONFIG': 'Release', 85 'BUILD_CONFIG': 'Release',
70 'TARGET_ARCH': 'arm', 86 'TARGET_ARCH': 'arm',
71 'TARGET_BITS': 32, 87 'TARGET_BITS': 32,
72 }, 88 },
73 'bot_type': 'builder_tester', 89 'bot_type': 'builder_tester',
(...skipping 1996 matching lines...) Expand 10 before | Expand all | Expand 10 after
2070 'compile_targets': [ 2086 'compile_targets': [
2071 'chrome', 2087 'chrome',
2072 ], 2088 ],
2073 'enable_swarming': True, 2089 'enable_swarming': True,
2074 'testing': { 2090 'testing': {
2075 'platform': 'win', 2091 'platform': 'win',
2076 }, 2092 },
2077 }, 2093 },
2078 }, 2094 },
2079 } 2095 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698