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

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

Issue 2018003002: New chromium.perf.fyi bots! Mac Retina and Android Galaxy S5. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix expectations. Created 4 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
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 7
8 RESULTS_URL = 'https://chromeperf.appspot.com' 8 RESULTS_URL = 'https://chromeperf.appspot.com'
9 9
10 10
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 perf_id='chromium-rel-win7-gpu-intel', 88 perf_id='chromium-rel-win7-gpu-intel',
89 target_bits=64, 89 target_bits=64,
90 parent_master='chromium.perf') 90 parent_master='chromium.perf')
91 91
92 _AddBotSpec( 92 _AddBotSpec(
93 name='Win Clang Perf', 93 name='Win Clang Perf',
94 platform='win', 94 platform='win',
95 parent_builder='Win Clang Builder', 95 parent_builder='Win Clang Builder',
96 perf_id='chromium-win-clang', 96 perf_id='chromium-win-clang',
97 target_bits=32) 97 target_bits=32)
98
99 _AddBotSpec(
100 name='Mac Retina Power Perf',
101 platform='mac',
102 parent_builder='Mac Builder',
103 perf_id='mac-retina-fyi',
104 target_bits=64,
105 parent_master='chromium.perf')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698