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

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

Issue 2167113003: Reland of [Android] Enable platform mode for perf tests on Galaxy S5 (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_Galaxy_S5_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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 tester_spec[builder_name] = _CreateShardTestSpec( 60 tester_spec[builder_name] = _CreateShardTestSpec(
61 name, perf_id, required_apks, num_device_shards, num_host_shards, 61 name, perf_id, required_apks, num_device_shards, num_host_shards,
62 shard_index, target_bits, browser_name, remove_system_webview, 62 shard_index, target_bits, browser_name, remove_system_webview,
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), 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),
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),
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',
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 mastername='chromium.perf', 283 mastername='chromium.perf',
284 buildername='Android Nexus5 Perf (1)', 284 buildername='Android Nexus5 Perf (1)',
285 parent_buildername='parent_buildername', 285 parent_buildername='parent_buildername',
286 parent_buildnumber='1729', 286 parent_buildnumber='1729',
287 parent_revision='deadbeef', 287 parent_revision='deadbeef',
288 revision='deadbeef', 288 revision='deadbeef',
289 slavename='slavename', 289 slavename='slavename',
290 target='Release') + 290 target='Release') +
291 api.override_step_data( 291 api.override_step_data(
292 'perf_test.foo', retcode=87)) 292 'perf_test.foo', retcode=87))
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/android/perf.expected/full_chromium_perf_Android_Galaxy_S5_Perf__1_.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698