| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 """Determines support level for different steps for masters.""" | 5 """Determines support level for different steps for masters.""" |
| 6 | 6 |
| 7 from model.wf_config import FinditConfig | 7 from model.wf_config import FinditConfig |
| 8 | 8 |
| 9 # Explicitly list unsupported masters. Additional work might be needed in order | 9 # Explicitly list unsupported masters. Additional work might be needed in order |
| 10 # to support them. | 10 # to support them. |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 def GetSwarmingSettings(): | 162 def GetSwarmingSettings(): |
| 163 return FinditConfig().Get().swarming_settings | 163 return FinditConfig().Get().swarming_settings |
| 164 | 164 |
| 165 | 165 |
| 166 def GetDownloadBuildDataSettings(): | 166 def GetDownloadBuildDataSettings(): |
| 167 return FinditConfig().Get().download_build_data_settings | 167 return FinditConfig().Get().download_build_data_settings |
| 168 | 168 |
| 169 | 169 |
| 170 def GetActionSettings(): | 170 def GetActionSettings(): |
| 171 return FinditConfig().Get().action_settings | 171 return FinditConfig().Get().action_settings |
| 172 |
| 173 |
| 174 def GetCheckFlakeSettings(): |
| 175 return FinditConfig().Get().check_flake_settings |
| OLD | NEW |