| 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 that all files contain proper licensing information.""" | 6 """Makes sure that all files contain proper licensing information.""" |
| 7 | 7 |
| 8 | 8 |
| 9 import json | 9 import json |
| 10 import optparse | 10 import optparse |
| (...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 } | 641 } |
| 642 | 642 |
| 643 EXCLUDED_PATHS = [ | 643 EXCLUDED_PATHS = [ |
| 644 # Don't check generated files | 644 # Don't check generated files |
| 645 'out/', | 645 'out/', |
| 646 | 646 |
| 647 # Don't check downloaded goma client binaries | 647 # Don't check downloaded goma client binaries |
| 648 'build/goma/client', | 648 'build/goma/client', |
| 649 | 649 |
| 650 # Don't check sysroot directories | 650 # Don't check sysroot directories |
| 651 'build/linux/debian_jessie_arm64-sysroot', |
| 651 'build/linux/debian_wheezy_amd64-sysroot', | 652 'build/linux/debian_wheezy_amd64-sysroot', |
| 652 'build/linux/debian_wheezy_arm-sysroot', | 653 'build/linux/debian_wheezy_arm-sysroot', |
| 653 'build/linux/debian_wheezy_i386-sysroot', | 654 'build/linux/debian_wheezy_i386-sysroot', |
| 654 'build/linux/debian_wheezy_mips-sysroot', | 655 'build/linux/debian_wheezy_mips-sysroot', |
| 655 ] | 656 ] |
| 656 | 657 |
| 657 | 658 |
| 658 def check_licenses(options, args): | 659 def check_licenses(options, args): |
| 659 # Figure out which directory we have to check. | 660 # Figure out which directory we have to check. |
| 660 if len(args) == 0: | 661 if len(args) == 0: |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 action='store_true', | 778 action='store_true', |
| 778 default=False, | 779 default=False, |
| 779 help='Ignore path-specific license whitelist.') | 780 help='Ignore path-specific license whitelist.') |
| 780 option_parser.add_option('--json', help='Path to JSON output file') | 781 option_parser.add_option('--json', help='Path to JSON output file') |
| 781 options, args = option_parser.parse_args() | 782 options, args = option_parser.parse_args() |
| 782 return check_licenses(options, args) | 783 return check_licenses(options, args) |
| 783 | 784 |
| 784 | 785 |
| 785 if '__main__' == __name__: | 786 if '__main__' == __name__: |
| 786 sys.exit(main()) | 787 sys.exit(main()) |
| OLD | NEW |