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

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

Issue 2169993002: [Android] Enable platform mode on more perf bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | scripts/slave/recipes/android/perf.expected/full_chromium_perf_Android_Nexus5X_Perf__1_.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 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 enable_platform_mode) 63 enable_platform_mode)
64 return tester_spec 64 return tester_spec
65 65
66 def _ChromiumPerfTesters(): 66 def _ChromiumPerfTesters():
67 testers = [ 67 testers = [
68 _CreateTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 68 _CreateTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5',
69 required_apks=['ChromePublic.apk'], num_device_shards=7, 69 required_apks=['ChromePublic.apk'], num_device_shards=7,
70 num_host_shards=3, target_bits=32, enable_platform_mode=True), 70 num_host_shards=3, target_bits=32, enable_platform_mode=True),
71 _CreateTestSpec('Android Nexus5 Perf', 'android-nexus5', 71 _CreateTestSpec('Android Nexus5 Perf', 'android-nexus5',
72 required_apks=['ChromePublic.apk'], num_device_shards=7, 72 required_apks=['ChromePublic.apk'], num_device_shards=7,
73 num_host_shards=3, target_bits=32), 73 num_host_shards=3, target_bits=32, enable_platform_mode=True),
74 _CreateTestSpec('Android Nexus5X Perf', 'android-nexus5X', 74 _CreateTestSpec('Android Nexus5X Perf', 'android-nexus5X',
75 required_apks=['ChromePublic.apk'], num_device_shards=7, 75 required_apks=['ChromePublic.apk'], num_device_shards=7,
76 num_host_shards=3), 76 num_host_shards=3, enable_platform_mode=True),
77 _CreateTestSpec('Android Nexus6 Perf', 'android-nexus6', 77 _CreateTestSpec('Android Nexus6 Perf', 'android-nexus6',
78 required_apks=['ChromePublic.apk'], num_device_shards=7, 78 required_apks=['ChromePublic.apk'], num_device_shards=7,
79 num_host_shards=3, target_bits=32), 79 num_host_shards=3, target_bits=32),
80 _CreateTestSpec('Android Nexus7v2 Perf', 'android-nexus7v2', 80 _CreateTestSpec('Android Nexus7v2 Perf', 'android-nexus7v2',
81 required_apks=['ChromePublic.apk'], num_device_shards=7, 81 required_apks=['ChromePublic.apk'], num_device_shards=7,
82 num_host_shards=3, target_bits=32), 82 num_host_shards=3, target_bits=32, enable_platform_mode=True),
83 _CreateTestSpec('Android Nexus9 Perf', 'android-nexus9', 83 _CreateTestSpec('Android Nexus9 Perf', 'android-nexus9',
84 required_apks=['ChromePublic.apk'], num_device_shards=7, 84 required_apks=['ChromePublic.apk'], num_device_shards=7,
85 num_host_shards=3), 85 num_host_shards=3),
86 _CreateTestSpec('Android One Perf', 'android-one', 86 _CreateTestSpec('Android One Perf', 'android-one',
87 required_apks=['ChromePublic.apk'], num_device_shards=7, 87 required_apks=['ChromePublic.apk'], num_device_shards=7,
88 num_host_shards=3, target_bits=32), 88 num_host_shards=3, target_bits=32),
89 _CreateTestSpec('Android Nexus5X WebView Perf', 'android-webview-nexus5X', 89 _CreateTestSpec('Android Nexus5X WebView Perf', 'android-webview-nexus5X',
90 required_apks=['SystemWebView.apk', 'SystemWebViewShell.apk'], 90 required_apks=['SystemWebView.apk', 'SystemWebViewShell.apk'],
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),
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 mastername='chromium.perf', 289 mastername='chromium.perf',
290 buildername='Android Nexus5 Perf (1)', 290 buildername='Android Nexus5 Perf (1)',
291 parent_buildername='parent_buildername', 291 parent_buildername='parent_buildername',
292 parent_buildnumber='1729', 292 parent_buildnumber='1729',
293 parent_revision='deadbeef', 293 parent_revision='deadbeef',
294 revision='deadbeef', 294 revision='deadbeef',
295 slavename='slavename', 295 slavename='slavename',
296 target='Release') + 296 target='Release') +
297 api.override_step_data( 297 api.override_step_data(
298 'perf_test.foo', retcode=87)) 298 'perf_test.foo', retcode=87))
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/android/perf.expected/full_chromium_perf_Android_Nexus5X_Perf__1_.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698