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

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

Issue 2172553003: The second solution solution for ToT catapult. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Addressing feedback and rebasing Created 4 years, 4 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 chromium_perf 5 from . import chromium_perf
6 6
7 import DEPS
8 CONFIG_CTX = DEPS['gclient'].CONFIG_CTX
9
10 @CONFIG_CTX(includes=['chromium_perf'])
11 def tryserver_chromium_perf(c):
12 soln = c.solutions.add()
13 soln.name = 'catapult'
14 soln.url = ('https://chromium.googlesource.com/external/github.com/'
15 'catapult-project/catapult.git')
7 16
8 SPEC = { 17 SPEC = {
9 'builders': {}, 18 'builders': {},
10 'settings': chromium_perf.SPEC['settings'], 19 'settings': chromium_perf.SPEC['settings'],
11 } 20 }
12 21
13 22
14 def _AddBuildSpec(name, platform, target_bits=64): 23 def _AddBuildSpec(name, platform, target_bits=64):
15 SPEC['builders'][name] = chromium_perf.BuildSpec( 24 SPEC['builders'][name] = chromium_perf.BuildSpec(
16 'tryserver_chromium_perf', None, platform, target_bits) 25 'tryserver_chromium_perf', None, platform, target_bits)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 _AddTestSpec('winx64ati_perf_bisect', 'win') 58 _AddTestSpec('winx64ati_perf_bisect', 'win')
50 _AddTestSpec('winx64intel_perf_bisect', 'win') 59 _AddTestSpec('winx64intel_perf_bisect', 'win')
51 _AddTestSpec('winx64nvidia_perf_bisect', 'win') 60 _AddTestSpec('winx64nvidia_perf_bisect', 'win')
52 61
53 _AddTestSpec('mac_10_11_perf_bisect', 'mac') 62 _AddTestSpec('mac_10_11_perf_bisect', 'mac')
54 _AddTestSpec('mac_10_10_perf_bisect', 'mac') 63 _AddTestSpec('mac_10_10_perf_bisect', 'mac')
55 _AddTestSpec('mac_retina_perf_bisect', 'mac') 64 _AddTestSpec('mac_retina_perf_bisect', 'mac')
56 _AddTestSpec('mac_hdd_perf_bisect', 'mac') 65 _AddTestSpec('mac_hdd_perf_bisect', 'mac')
57 66
58 _AddTestSpec('linux_perf_bisect', 'linux') 67 _AddTestSpec('linux_perf_bisect', 'linux')
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_perf.py ('k') | scripts/slave/recipes/bisect.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698