| 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 . import steps | 5 from . import steps |
| 6 | 6 |
| 7 | 7 |
| 8 def _GetTargetName(platform, target_bits): | 8 def _GetTargetName(platform, target_bits): |
| 9 return ('Release_x64' if platform is 'win' and target_bits is 64 | 9 return ('Release_x64' if platform is 'win' and target_bits is 64 |
| 10 else 'Release') | 10 else 'Release') |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 'android_config': 'perf', | 288 'android_config': 'perf', |
| 289 'testing': { | 289 'testing': { |
| 290 'platform': 'linux', | 290 'platform': 'linux', |
| 291 }, | 291 }, |
| 292 'tests': [ | 292 'tests': [ |
| 293 steps.AndroidPerfTests(v['perf_id'], v['num_device_shards']), | 293 steps.AndroidPerfTests(v['perf_id'], v['num_device_shards']), |
| 294 ], | 294 ], |
| 295 'perf-id': v['perf_id'], | 295 'perf-id': v['perf_id'], |
| 296 'results-url': 'https://chromeperf.appspot.com', | 296 'results-url': 'https://chromeperf.appspot.com', |
| 297 } | 297 } |
| OLD | NEW |