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

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

Issue 9513006: First pass at content shell for the Mac. Doesn't work yet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | Annotate | Revision Log
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 svn:executable 8 Some developers have broken SCM configurations that flip the svn: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 28 matching lines...) Expand all
39 'rb', 39 'rb',
40 'sed', 40 'sed',
41 'sh', 41 'sh',
42 ] 42 ]
43 43
44 # Files that end the following paths are whitelisted too. 44 # Files that end the following paths are whitelisted too.
45 WHITELIST_FILES = [ 45 WHITELIST_FILES = [
46 '/build/gyp_chromium', 46 '/build/gyp_chromium',
47 '/build/linux/dump_app_syms', 47 '/build/linux/dump_app_syms',
48 '/build/linux/pkg-config-wrapper', 48 '/build/linux/pkg-config-wrapper',
49 '/build/mac/copy_framework_unversioned',
49 '/build/mac/strip_from_xcode', 50 '/build/mac/strip_from_xcode',
50 '/build/mac/strip_save_dsym', 51 '/build/mac/strip_save_dsym',
51 '/chrome/installer/mac/pkg-dmg', 52 '/chrome/installer/mac/pkg-dmg',
52 '/chrome/tools/build/linux/chrome-wrapper', 53 '/chrome/tools/build/linux/chrome-wrapper',
53 '/chrome/tools/build/mac/build_app_dmg', 54 '/chrome/tools/build/mac/build_app_dmg',
54 '/chrome/tools/build/mac/clean_up_old_versions', 55 '/chrome/tools/build/mac/clean_up_old_versions',
55 '/chrome/tools/build/mac/copy_framework_unversioned',
56 '/chrome/tools/build/mac/dump_product_syms', 56 '/chrome/tools/build/mac/dump_product_syms',
57 '/chrome/tools/build/mac/generate_localizer', 57 '/chrome/tools/build/mac/generate_localizer',
58 '/chrome/tools/build/mac/make_sign_sh', 58 '/chrome/tools/build/mac/make_sign_sh',
59 '/chrome/tools/build/mac/tweak_info_plist', 59 '/chrome/tools/build/mac/tweak_info_plist',
60 '/chrome/tools/build/mac/verify_order', 60 '/chrome/tools/build/mac/verify_order',
61 '/o3d/build/gyp_o3d', 61 '/o3d/build/gyp_o3d',
62 '/o3d/gypbuild', 62 '/o3d/gypbuild',
63 '/o3d/installer/linux/debian.in/rules', 63 '/o3d/installer/linux/debian.in/rules',
64 '/third_party/icu/source/runconfigureicu', 64 '/third_party/icu/source/runconfigureicu',
65 '/third_party/gold/gold64', 65 '/third_party/gold/gold64',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 success = CheckDirectory(start_dir) 334 success = CheckDirectory(start_dir)
335 if not success: 335 if not success:
336 print '\nFAILED\n' 336 print '\nFAILED\n'
337 return 1 337 return 1
338 print '\nSUCCESS\n' 338 print '\nSUCCESS\n'
339 return 0 339 return 0
340 340
341 341
342 if '__main__' == __name__: 342 if '__main__' == __name__:
343 sys.exit(main(sys.argv)) 343 sys.exit(main(sys.argv))
OLDNEW
« content/shell/mac/exported_symbols.exp ('K') | « content/shell/shell_main_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698