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

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

Issue 1413523010: Revert of 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',
17 'ninja_confirm_noop', 16 'ninja_confirm_noop',
18 'no_dump_symbols', 17 'no_dump_symbols',
19 ], 18 ],
20 'gclient_config': 'chromium', 19 'gclient_config': 'chromium',
21 'chromium_config_kwargs': { 20 'chromium_config_kwargs': {
22 'BUILD_CONFIG': 'Release', 21 'BUILD_CONFIG': 'Release',
23 'TARGET_BITS': 64, 22 'TARGET_BITS': 64,
24 }, 23 },
25 'compile_targets': [ 24 'compile_targets': [
26 'all', 25 'all',
27 ], 26 ],
28 'tests': [ 27 'tests': [
29 steps.SizesStep(RESULTS_URL, 'chromium-rel-linux-64'), 28 steps.SizesStep(RESULTS_URL, 'chromium-rel-linux-64'),
30 ], 29 ],
31 'test_generators': [ 30 'test_generators': [
32 steps.generate_gtest, 31 steps.generate_gtest,
33 steps.generate_script, 32 steps.generate_script,
34 steps.generate_isolated_script, 33 steps.generate_isolated_script,
35 ], 34 ],
36 'archive_build': True, 35 'archive_build': True,
37 'gs_bucket': 'chromium-browser-snapshots', 36 'gs_bucket': 'chromium-browser-snapshots',
38 'gs_acl': 'public-read', 37 'gs_acl': 'public-read',
39 'testing': { 38 'testing': {
40 'platform': 'linux', 39 'platform': 'linux',
41 }, 40 },
42 }, 41 },
43 }, 42 },
44 } 43 }
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