| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 # Used for development and test, not in the shipping product. | 44 # Used for development and test, not in the shipping product. |
| 45 os.path.join('build','secondary'), | 45 os.path.join('build','secondary'), |
| 46 os.path.join('third_party','bison'), | 46 os.path.join('third_party','bison'), |
| 47 os.path.join('third_party','blanketjs'), | 47 os.path.join('third_party','blanketjs'), |
| 48 os.path.join('third_party','chromite'), | 48 os.path.join('third_party','chromite'), |
| 49 os.path.join('third_party','cygwin'), | 49 os.path.join('third_party','cygwin'), |
| 50 os.path.join('third_party','gles2_conform'), | 50 os.path.join('third_party','gles2_conform'), |
| 51 os.path.join('third_party','gnu_binutils'), | 51 os.path.join('third_party','gnu_binutils'), |
| 52 os.path.join('third_party','gold'), | 52 os.path.join('third_party','gold'), |
| 53 os.path.join('third_party','gperf'), | 53 os.path.join('third_party','gperf'), |
| 54 os.path.join('third_party','jarjar'), | |
| 55 os.path.join('third_party','kasko'), | 54 os.path.join('third_party','kasko'), |
| 56 os.path.join('third_party','lighttpd'), | 55 os.path.join('third_party','lighttpd'), |
| 57 os.path.join('third_party','llvm'), | 56 os.path.join('third_party','llvm'), |
| 58 os.path.join('third_party','llvm-build'), | 57 os.path.join('third_party','llvm-build'), |
| 59 os.path.join('third_party','mingw-w64'), | 58 os.path.join('third_party','mingw-w64'), |
| 60 os.path.join('third_party','nacl_sdk_binaries'), | 59 os.path.join('third_party','nacl_sdk_binaries'), |
| 61 os.path.join('third_party','pefile'), | 60 os.path.join('third_party','pefile'), |
| 62 os.path.join('third_party','perl'), | 61 os.path.join('third_party','perl'), |
| 63 os.path.join('third_party','psyco_win32'), | 62 os.path.join('third_party','psyco_win32'), |
| 64 os.path.join('third_party','pyelftools'), | 63 os.path.join('third_party','pyelftools'), |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 if not GenerateCredits(args.file_template, args.entry_template, | 565 if not GenerateCredits(args.file_template, args.entry_template, |
| 567 args.output_file, args.target_os): | 566 args.output_file, args.target_os): |
| 568 return 1 | 567 return 1 |
| 569 else: | 568 else: |
| 570 print __doc__ | 569 print __doc__ |
| 571 return 1 | 570 return 1 |
| 572 | 571 |
| 573 | 572 |
| 574 if __name__ == '__main__': | 573 if __name__ == '__main__': |
| 575 sys.exit(main()) | 574 sys.exit(main()) |
| OLD | NEW |