| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Makes sure files have the right permissions. | 6 """Makes sure files have the right permissions. |
| 7 | 7 |
| 8 Some developers have broken SCM configurations that flip the executable | 8 Some developers have broken SCM configurations that flip the executable |
| 9 permission on for no good reason. Unix developers who run ls --color will then | 9 permission on for no good reason. Unix developers who run ls --color will then |
| 10 see .cc files in green and get confused. | 10 see .cc files in green and get confused. |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'mkinstalldirs', | 165 'mkinstalldirs', |
| 166 'naclsdk', | 166 'naclsdk', |
| 167 'scons', | 167 'scons', |
| 168 ) | 168 ) |
| 169 | 169 |
| 170 # File paths starting with one of these will be ignored as well. | 170 # File paths starting with one of these will be ignored as well. |
| 171 # Please consider fixing your file permissions, rather than adding to this list. | 171 # Please consider fixing your file permissions, rather than adding to this list. |
| 172 # | 172 # |
| 173 # Case-insensitive, lower-case only. | 173 # Case-insensitive, lower-case only. |
| 174 IGNORED_PATHS = ( | 174 IGNORED_PATHS = ( |
| 175 'chrome/test/data/safe_browsing/mach_o/', |
| 175 'native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/' | 176 'native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/' |
| 176 '__init__.py', | 177 '__init__.py', |
| 177 'out/', | 178 'out/', |
| 178 # TODO(maruel): Fix these. | 179 # TODO(maruel): Fix these. |
| 179 'third_party/bintrees/', | 180 'third_party/bintrees/', |
| 180 'third_party/closure_linter/', | 181 'third_party/closure_linter/', |
| 181 'third_party/devscripts/licensecheck.pl.vanilla', | 182 'third_party/devscripts/licensecheck.pl.vanilla', |
| 182 'third_party/hyphen/', | 183 'third_party/hyphen/', |
| 183 'third_party/lcov-1.9/contrib/galaxy/conglomerate_functions.pl', | 184 'third_party/lcov-1.9/contrib/galaxy/conglomerate_functions.pl', |
| 184 'third_party/lcov-1.9/contrib/galaxy/gen_makefile.sh', | 185 'third_party/lcov-1.9/contrib/galaxy/gen_makefile.sh', |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 print '\nFAILED\n' | 468 print '\nFAILED\n' |
| 468 print '\n'.join('%s: %s' % (e['full_path'], e['error']) for e in errors) | 469 print '\n'.join('%s: %s' % (e['full_path'], e['error']) for e in errors) |
| 469 return 1 | 470 return 1 |
| 470 if not options.bare: | 471 if not options.bare: |
| 471 print '\nSUCCESS\n' | 472 print '\nSUCCESS\n' |
| 472 return 0 | 473 return 0 |
| 473 | 474 |
| 474 | 475 |
| 475 if '__main__' == __name__: | 476 if '__main__' == __name__: |
| 476 sys.exit(main()) | 477 sys.exit(main()) |
| OLD | NEW |