| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 os.path.join('third_party','llvm'), | 56 os.path.join('third_party','llvm'), |
| 57 os.path.join('third_party','llvm-build'), | 57 os.path.join('third_party','llvm-build'), |
| 58 os.path.join('third_party','mingw-w64'), | 58 os.path.join('third_party','mingw-w64'), |
| 59 os.path.join('third_party','nacl_sdk_binaries'), | 59 os.path.join('third_party','nacl_sdk_binaries'), |
| 60 os.path.join('third_party','pefile'), | 60 os.path.join('third_party','pefile'), |
| 61 os.path.join('third_party','perl'), | 61 os.path.join('third_party','perl'), |
| 62 os.path.join('third_party','psyco_win32'), | 62 os.path.join('third_party','psyco_win32'), |
| 63 os.path.join('third_party','pyelftools'), | 63 os.path.join('third_party','pyelftools'), |
| 64 os.path.join('third_party','pylib'), | 64 os.path.join('third_party','pylib'), |
| 65 os.path.join('third_party','pywebsocket'), | 65 os.path.join('third_party','pywebsocket'), |
| 66 os.path.join('third_party','qunit'), | |
| 67 os.path.join('third_party','sinonjs'), | |
| 68 os.path.join('third_party','syzygy'), | 66 os.path.join('third_party','syzygy'), |
| 69 | 67 |
| 70 # Chromium code in third_party. | 68 # Chromium code in third_party. |
| 71 os.path.join('third_party','fuzzymatch'), | 69 os.path.join('third_party','fuzzymatch'), |
| 72 os.path.join('tools', 'swarming_client'), | 70 os.path.join('tools', 'swarming_client'), |
| 73 | 71 |
| 74 # Stuff pulled in from chrome-internal for official builds/tools. | 72 # Stuff pulled in from chrome-internal for official builds/tools. |
| 75 os.path.join('third_party', 'clear_cache'), | 73 os.path.join('third_party', 'clear_cache'), |
| 76 os.path.join('third_party', 'gnu'), | 74 os.path.join('third_party', 'gnu'), |
| 77 os.path.join('third_party', 'googlemac'), | 75 os.path.join('third_party', 'googlemac'), |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 if not GenerateCredits(args.file_template, args.entry_template, | 569 if not GenerateCredits(args.file_template, args.entry_template, |
| 572 args.output_file, args.target_os): | 570 args.output_file, args.target_os): |
| 573 return 1 | 571 return 1 |
| 574 else: | 572 else: |
| 575 print __doc__ | 573 print __doc__ |
| 576 return 1 | 574 return 1 |
| 577 | 575 |
| 578 | 576 |
| 579 if __name__ == '__main__': | 577 if __name__ == '__main__': |
| 580 sys.exit(main()) | 578 sys.exit(main()) |
| OLD | NEW |