| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 | 5 |
| 6 """Presubmit checks for the buildbot code.""" | 6 """Presubmit checks for the buildbot code.""" |
| 7 | 7 |
| 8 import os | 8 import os |
| 9 import subprocess | 9 import subprocess |
| 10 import sys | 10 import sys |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 134 |
| 135 | 135 |
| 136 def CheckChangeOnCommit(input_api, output_api): | 136 def CheckChangeOnCommit(input_api, output_api): |
| 137 # results = CheckChange(input_api, output_api) | 137 # results = CheckChange(input_api, output_api) |
| 138 # results.extend( | 138 # results.extend( |
| 139 # _CheckTreeStatus(input_api, output_api, json_url=( | 139 # _CheckTreeStatus(input_api, output_api, json_url=( |
| 140 # SKIA_TREE_STATUS_URL + '/banner-status?format=json'))) | 140 # SKIA_TREE_STATUS_URL + '/banner-status?format=json'))) |
| 141 return [] | 141 return [] |
| 142 # return results | 142 # return results |
| 143 | 143 |
| 144 |
| 145 |
| OLD | NEW |