| 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 """Presubmit script for files in chrome/browser/resources. | 5 """Presubmit script for files in chrome/browser/resources. |
| 6 | 6 |
| 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
| 8 for more details about the presubmit API built into depot_tools. | 8 for more details about the presubmit API built into depot_tools. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 new_description = re.sub(tag_reg, new_tag, description, flags=re.M | re.I) | 113 new_description = re.sub(tag_reg, new_tag, description, flags=re.M | re.I) |
| 114 else: | 114 else: |
| 115 new_description = description + '\n' + new_tag | 115 new_description = description + '\n' + new_tag |
| 116 | 116 |
| 117 if new_description == description: | 117 if new_description == description: |
| 118 return [] | 118 return [] |
| 119 | 119 |
| 120 rietveld_obj.update_description(cl.issue, new_description) | 120 rietveld_obj.update_description(cl.issue, new_description) |
| 121 return [output_api.PresubmitNotifyResult( | 121 return [output_api.PresubmitNotifyResult( |
| 122 'Automatically added optional Closure bots to run on CQ.')] | 122 'Automatically added optional Closure bots to run on CQ.')] |
| 123 |
| 124 |
| 125 def GetPreferredTryMasters(project, change): |
| 126 return { |
| 127 'tryserver.chromium.linux': { |
| 128 'closure_compilation': set(['defaulttests']), |
| 129 }, |
| 130 } |
| OLD | NEW |