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

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

Issue 1412093012: Flip Linux x64, linux_chromium_archive_rel_ng bots to MB. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_Linux_x64.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'builders': { 10 'builders': {
11 'Linux x64': { 11 'Linux x64': {
12 'chromium_config': 'chromium', 12 'chromium_config': 'chromium',
13 'chromium_apply_config': [ 13 'chromium_apply_config': [
14 'clobber', 14 'clobber',
15 'isolation_mode_noop', 15 'isolation_mode_noop',
16 'mb',
16 'ninja_confirm_noop', 17 'ninja_confirm_noop',
17 'no_dump_symbols', 18 'no_dump_symbols',
18 ], 19 ],
19 'gclient_config': 'chromium', 20 'gclient_config': 'chromium',
20 'chromium_config_kwargs': { 21 'chromium_config_kwargs': {
21 'BUILD_CONFIG': 'Release', 22 'BUILD_CONFIG': 'Release',
22 'TARGET_BITS': 64, 23 'TARGET_BITS': 64,
23 }, 24 },
24 'compile_targets': [ 25 'compile_targets': [
25 'all', 26 'all',
26 ], 27 ],
27 'tests': [ 28 'tests': [
28 steps.SizesStep(RESULTS_URL, 'chromium-rel-linux-64'), 29 steps.SizesStep(RESULTS_URL, 'chromium-rel-linux-64'),
29 ], 30 ],
30 'test_generators': [ 31 'test_generators': [
31 steps.generate_gtest, 32 steps.generate_gtest,
32 steps.generate_script, 33 steps.generate_script,
33 steps.generate_isolated_script, 34 steps.generate_isolated_script,
34 ], 35 ],
35 'archive_build': True, 36 'archive_build': True,
36 'gs_bucket': 'chromium-browser-snapshots', 37 'gs_bucket': 'chromium-browser-snapshots',
37 'gs_acl': 'public-read', 38 'gs_acl': 'public-read',
38 'testing': { 39 'testing': {
39 'platform': 'linux', 40 'platform': 'linux',
40 }, 41 },
41 }, 42 },
42 }, 43 },
43 } 44 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_Linux_x64.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698