| OLD | NEW |
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. | 1 # Copyright (c) 2012 Google Inc. 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 """Top-level presubmit script for GYP. | 6 """Top-level presubmit script for GYP. |
| 7 | 7 |
| 8 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 8 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
| 9 for more details about the presubmit API built into gcl. | 9 for more details about the presubmit API built into gcl. |
| 10 """ | 10 """ |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'E0602', | 53 'E0602', |
| 54 # Not exception type specified. | 54 # Not exception type specified. |
| 55 'W0702', | 55 'W0702', |
| 56 # No member of that name. | 56 # No member of that name. |
| 57 'E1101', | 57 'E1101', |
| 58 # Dangerous default {}. | 58 # Dangerous default {}. |
| 59 'W0102', | 59 'W0102', |
| 60 # Others, too many to sort. | 60 # Others, too many to sort. |
| 61 'W0201', 'W0232', 'E1103', 'W0621', 'W0108', 'W0223', 'W0231', | 61 'W0201', 'W0232', 'E1103', 'W0621', 'W0108', 'W0223', 'W0231', |
| 62 'R0201', 'E0101', 'C0321', | 62 'R0201', 'E0101', 'C0321', |
| 63 # ************* Module copy |
| 64 # W0104:427,12:_test.odict.__setitem__: Statement seems to have no effect |
| 65 'W0104', |
| 63 ] | 66 ] |
| 64 | 67 |
| 65 | 68 |
| 66 def CheckChangeOnUpload(input_api, output_api): | 69 def CheckChangeOnUpload(input_api, output_api): |
| 67 report = [] | 70 report = [] |
| 68 report.extend(input_api.canned_checks.PanProjectChecks( | 71 report.extend(input_api.canned_checks.PanProjectChecks( |
| 69 input_api, output_api)) | 72 input_api, output_api)) |
| 70 return report | 73 return report |
| 71 | 74 |
| 72 | 75 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 97 output_api, | 100 output_api, |
| 98 black_list=PYLINT_BLACKLIST, | 101 black_list=PYLINT_BLACKLIST, |
| 99 disabled_warnings=PYLINT_DISABLED_WARNINGS)) | 102 disabled_warnings=PYLINT_DISABLED_WARNINGS)) |
| 100 finally: | 103 finally: |
| 101 sys.path = old_sys_path | 104 sys.path = old_sys_path |
| 102 return report | 105 return report |
| 103 | 106 |
| 104 | 107 |
| 105 def GetPreferredTrySlaves(): | 108 def GetPreferredTrySlaves(): |
| 106 return ['gyp-win32', 'gyp-win64', 'gyp-linux', 'gyp-mac'] | 109 return ['gyp-win32', 'gyp-win64', 'gyp-linux', 'gyp-mac'] |
| OLD | NEW |