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

Side by Side Diff: scripts/slave/recipes/android/perf.py

Issue 2259823008: Move chromium.perf.fyi Galaxy S5 Perf from android/perf to chromium recipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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 recipe_engine.types import freeze 5 from recipe_engine.types import freeze
6 6
7 7
8 DEPS = [ 8 DEPS = [
9 'adb', 9 'adb',
10 'chromium', 10 'chromium',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 num_device_shards=7, num_host_shards=3, target_bits=64, 91 num_device_shards=7, num_host_shards=3, target_bits=64,
92 browser_name='android-webview', remove_system_webview=True), 92 browser_name='android-webview', remove_system_webview=True),
93 ] 93 ]
94 master_spec = {} 94 master_spec = {}
95 for spec in testers: 95 for spec in testers:
96 master_spec.update(spec) 96 master_spec.update(spec)
97 return master_spec 97 return master_spec
98 98
99 def _ChromiumPerfFyiTesters(): 99 def _ChromiumPerfFyiTesters():
100 testers = [ 100 testers = [
101 _CreateTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5',
102 required_apks=['ChromePublic.apk'], num_device_shards=7,
103 num_host_shards=1, target_bits=32),
104 _CreateTestSpec('Android Power Nexus 5X Perf', 'android-power-nexus-5x', 101 _CreateTestSpec('Android Power Nexus 5X Perf', 'android-power-nexus-5x',
105 required_apks=['ChromePublic.apk'], num_device_shards=7, 102 required_apks=['ChromePublic.apk'], num_device_shards=7,
106 num_host_shards=1), 103 num_host_shards=1),
107 ] 104 ]
108 105
109 master_spec = {} 106 master_spec = {}
110 for spec in testers: 107 for spec in testers:
111 master_spec.update(spec) 108 master_spec.update(spec)
112 return master_spec 109 return master_spec
113 110
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 "adb_status": "device", 346 "adb_status": "device",
350 "imei_slice": "", 347 "imei_slice": "",
351 "ro.build.product": "bullhead", 348 "ro.build.product": "bullhead",
352 "ro.build.id": "MDB08Q", 349 "ro.build.id": "MDB08Q",
353 "serial": "00d0d567893340f4", 350 "serial": "00d0d567893340f4",
354 "wifi_ip": "" 351 "wifi_ip": ""
355 }] 352 }]
356 }}), 353 }}),
357 retcode=87)) 354 retcode=87))
358 355
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698