| 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 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
| 8 | 8 |
| 9 def _GetTargetName(platform, target_bits): | 9 def _GetTargetName(platform, target_bits): |
| 10 return ('Release_x64' if platform is 'win' and target_bits is 64 | 10 return ('Release_x64' if platform is 'win' and target_bits is 64 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 _AddBotSpec( | 179 _AddBotSpec( |
| 180 name='android_nexus5_oilpan_perf', | 180 name='android_nexus5_oilpan_perf', |
| 181 platform='android', | 181 platform='android', |
| 182 parent_builder='android_oilpan_builder', | 182 parent_builder='android_oilpan_builder', |
| 183 perf_id='android-nexus5-oilpan', | 183 perf_id='android-nexus5-oilpan', |
| 184 target_bits=32, | 184 target_bits=32, |
| 185 num_shards=1, | 185 num_shards=1, |
| 186 extra_tests=[steps.AndroidPerfTests('android-nexus5-oilpan', 1)]) | 186 extra_tests=[steps.AndroidPerfTests('android-nexus5-oilpan', 1)]) |
| 187 | 187 |
| OLD | NEW |