| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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)) |
| OLD | NEW |