| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'BUILD_CONFIG': 'Release', | 105 'BUILD_CONFIG': 'Release', |
| 106 'TARGET_BITS': 64, | 106 'TARGET_BITS': 64, |
| 107 }, | 107 }, |
| 108 'bot_type': 'builder', | 108 'bot_type': 'builder', |
| 109 'compile_targets': [ | 109 'compile_targets': [ |
| 110 'chromium_builder_perf', | 110 'chromium_builder_perf', |
| 111 ], | 111 ], |
| 112 'testing': { | 112 'testing': { |
| 113 'platform': 'win', | 113 'platform': 'win', |
| 114 }, | 114 }, |
| 115 'chromium_apply_config': ['chromium_perf'] | 115 'chromium_apply_config': ['chromium_perf_fyi'] |
| 116 }, | 116 }, |
| 117 }, | 117 }, |
| 118 } | 118 } |
| 119 | 119 |
| 120 _AddBotSpec( | 120 _AddBotSpec( |
| 121 name='Linux Oilpan Perf', | 121 name='Linux Oilpan Perf', |
| 122 platform='linux', | 122 platform='linux', |
| 123 parent_builder='Linux Oilpan Builder', | 123 parent_builder='Linux Oilpan Builder', |
| 124 perf_id='linux-oilpan-release', | 124 perf_id='linux-oilpan-release', |
| 125 target_bits=64, | 125 target_bits=64, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 140 # perf_id='chromium-rel-win7-gpu-intel', | 140 # perf_id='chromium-rel-win7-gpu-intel', |
| 141 # target_bits=64, | 141 # target_bits=64, |
| 142 # num_shards=1) | 142 # num_shards=1) |
| 143 _AddBotSpec( | 143 _AddBotSpec( |
| 144 name='Win 7 Nvidia GPU Perf', | 144 name='Win 7 Nvidia GPU Perf', |
| 145 platform='win', | 145 platform='win', |
| 146 parent_builder='Win x64 FYI Builder', | 146 parent_builder='Win x64 FYI Builder', |
| 147 perf_id='chromium-rel-win7-gpu-nvidia', | 147 perf_id='chromium-rel-win7-gpu-nvidia', |
| 148 target_bits=64, | 148 target_bits=64, |
| 149 num_shards=1) | 149 num_shards=1) |
| OLD | NEW |