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 """Utility for checking and processing licensing information in third_party | 6 """Utility for checking and processing licensing information in third_party |
7 directories. | 7 directories. |
8 | 8 |
9 Usage: licenses.py <command> | 9 Usage: licenses.py <command> |
10 | 10 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 os.path.join('third_party','mingw-w64'), | 54 os.path.join('third_party','mingw-w64'), |
55 os.path.join('third_party','nacl_sdk_binaries'), | 55 os.path.join('third_party','nacl_sdk_binaries'), |
56 os.path.join('third_party','pefile'), | 56 os.path.join('third_party','pefile'), |
57 os.path.join('third_party','perl'), | 57 os.path.join('third_party','perl'), |
58 os.path.join('third_party','psyco_win32'), | 58 os.path.join('third_party','psyco_win32'), |
59 os.path.join('third_party','pylib'), | 59 os.path.join('third_party','pylib'), |
60 os.path.join('third_party','pywebsocket'), | 60 os.path.join('third_party','pywebsocket'), |
61 os.path.join('third_party','qunit'), | 61 os.path.join('third_party','qunit'), |
62 os.path.join('third_party','sinonjs'), | 62 os.path.join('third_party','sinonjs'), |
63 os.path.join('third_party','syzygy'), | 63 os.path.join('third_party','syzygy'), |
64 os.path.join('tools', 'profile_chrome', 'third_party'), | |
65 | 64 |
66 # Chromium code in third_party. | 65 # Chromium code in third_party. |
67 os.path.join('third_party','fuzzymatch'), | 66 os.path.join('third_party','fuzzymatch'), |
68 os.path.join('tools', 'swarming_client'), | 67 os.path.join('tools', 'swarming_client'), |
69 | 68 |
70 # Stuff pulled in from chrome-internal for official builds/tools. | 69 # Stuff pulled in from chrome-internal for official builds/tools. |
71 os.path.join('third_party', 'clear_cache'), | 70 os.path.join('third_party', 'clear_cache'), |
72 os.path.join('third_party', 'gnu'), | 71 os.path.join('third_party', 'gnu'), |
73 os.path.join('third_party', 'googlemac'), | 72 os.path.join('third_party', 'googlemac'), |
74 os.path.join('third_party', 'pcre'), | 73 os.path.join('third_party', 'pcre'), |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 if not GenerateCredits(args.file_template, args.entry_template, | 567 if not GenerateCredits(args.file_template, args.entry_template, |
569 args.output_file, args.target_os): | 568 args.output_file, args.target_os): |
570 return 1 | 569 return 1 |
571 else: | 570 else: |
572 print __doc__ | 571 print __doc__ |
573 return 1 | 572 return 1 |
574 | 573 |
575 | 574 |
576 if __name__ == '__main__': | 575 if __name__ == '__main__': |
577 sys.exit(main()) | 576 sys.exit(main()) |
OLD | NEW |