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

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

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Address review comments. Created 5 years, 6 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
(Empty)
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
3 # found in the LICENSE file.
4
5
6 from . import chromium_perf
7 from . import steps
8
9
10 SPEC = {
11 'settings': chromium_perf.SPEC['settings'],
12 'builders': {
13 # This is intended to build in the same way as the main perf builder.
14 'linux_perf_bisect_builder':
15 chromium_perf.SPEC['builders']['Linux Builder'],
16 'linux_perf_bisect':
17 chromium_perf.SPEC['builders']['Linux Builder'],
18 'win_perf_bisect_builder':
19 chromium_perf.SPEC['builders']['Win Builder'],
20 'win_perf_bisect':
21 chromium_perf.SPEC['builders']['Win Builder'],
22 'win_8_perf_bisect':
23 chromium_perf.SPEC['builders']['Win Builder'],
24 'win_xp_perf_bisect':
25 chromium_perf.SPEC['builders']['Win Builder'],
26 'win_x64_perf_bisect_builder':
27 chromium_perf.SPEC['builders']['Win x64 Builder'],
28 'win_x64_perf_bisect':
29 chromium_perf.SPEC['builders']['Win x64 Builder'],
30 'win_x64_ati_gpu_perf_bisect':
31 chromium_perf.SPEC['builders']['Win x64 Builder'],
32 'win_x64_nvidia_gpu_perf_bisect':
33 chromium_perf.SPEC['builders']['Win x64 Builder'],
34 'mac_perf_bisect_builder':
35 chromium_perf.SPEC['builders']['Mac Builder'],
36 'mac_perf_bisect':
37 chromium_perf.SPEC['builders']['Mac Builder'],
38 'mac_10_9_perf_bisect':
39 chromium_perf.SPEC['builders']['Mac Builder'],
40 'linux_perf_tester':{
41 'chromium_config': 'chromium_official',
42 'gclient_config': 'chromium',
43 'gclient_apply_config': ['chrome_internal'],
44 'parent_buildername': 'Linux Builder',
45 'chromium_config_kwargs': {
46 'BUILD_CONFIG': 'Release',
47 'TARGET_BITS': 64,
48 },
49 'bot_type': 'tester',
50 'compile_targets': [
51 'chromium_builder_perf',
52 ],
53 'testing': {
54 'platform': 'linux',
55 },
56 'tests':[steps.BisectTest()],
57 'chromium_apply_config': ['chromium_perf']
58 },
59 'linux_perf_bisector':{
60 'chromium_config': 'chromium_official',
61 'gclient_config': 'chromium',
62 'gclient_apply_config': ['chrome_internal'],
63 'parent_buildername': 'Linux Builder',
64 'chromium_config_kwargs': {
65 'BUILD_CONFIG': 'Release',
66 'TARGET_BITS': 64,
67 },
68 'bot_type': 'tester',
69 'compile_targets': [
70 'chromium_builder_perf',
71 ],
72 'testing': {
73 'platform': 'linux',
74 },
75 'tests':[steps.BisectTest()],
76 'chromium_apply_config': ['chromium_perf']
77 },
78 }
79 }
80
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698