Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: tools/checkperms/checkperms.py

Issue 1363613004: Implement anonymous, opt-in, collection of OS X binary integrity incidents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test checkperms changs Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698