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