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

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

Issue 2755483002: Reland of Update linux sysroot images from debian/wheezy to debian/jessie (Closed)
Patch Set: Created 3 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
« no previous file with comments | « build/linux/sysroot_scripts/install-sysroot.py ('k') | tools/mb/mb_config.pyl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_jessie_arm64-sysroot',
652 'build/linux/debian_jessie_amd64-sysroot',
653 'build/linux/debian_jessie_arm-sysroot',
654 'build/linux/debian_jessie_i386-sysroot',
655 'build/linux/debian_jessie_mips-sysroot',
652 'build/linux/debian_wheezy_amd64-sysroot', 656 'build/linux/debian_wheezy_amd64-sysroot',
653 'build/linux/debian_wheezy_arm-sysroot', 657 'build/linux/debian_wheezy_arm-sysroot',
654 'build/linux/debian_wheezy_i386-sysroot', 658 'build/linux/debian_wheezy_i386-sysroot',
655 'build/linux/debian_wheezy_mips-sysroot', 659 'build/linux/debian_wheezy_mips-sysroot',
656 'build/linux/ubuntu_precise_amd64-sysroot', 660 'build/linux/ubuntu_precise_amd64-sysroot',
657 ] 661 ]
658 662
659 663
660 def check_licenses(options, args): 664 def check_licenses(options, args):
661 # Figure out which directory we have to check. 665 # Figure out which directory we have to check.
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 action='store_true', 783 action='store_true',
780 default=False, 784 default=False,
781 help='Ignore path-specific license whitelist.') 785 help='Ignore path-specific license whitelist.')
782 option_parser.add_option('--json', help='Path to JSON output file') 786 option_parser.add_option('--json', help='Path to JSON output file')
783 options, args = option_parser.parse_args() 787 options, args = option_parser.parse_args()
784 return check_licenses(options, args) 788 return check_licenses(options, args)
785 789
786 790
787 if '__main__' == __name__: 791 if '__main__' == __name__:
788 sys.exit(main()) 792 sys.exit(main())
OLDNEW
« no previous file with comments | « build/linux/sysroot_scripts/install-sysroot.py ('k') | tools/mb/mb_config.pyl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698