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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 os.path.join('third_party','lighttpd'), | 43 os.path.join('third_party','lighttpd'), |
44 os.path.join('third_party','llvm'), | 44 os.path.join('third_party','llvm'), |
45 os.path.join('third_party','llvm-build'), | 45 os.path.join('third_party','llvm-build'), |
46 os.path.join('third_party','mingw-w64'), | 46 os.path.join('third_party','mingw-w64'), |
47 os.path.join('third_party','nacl_sdk_binaries'), | 47 os.path.join('third_party','nacl_sdk_binaries'), |
48 os.path.join('third_party','pefile'), | 48 os.path.join('third_party','pefile'), |
49 os.path.join('third_party','perl'), | 49 os.path.join('third_party','perl'), |
50 os.path.join('third_party','psyco_win32'), | 50 os.path.join('third_party','psyco_win32'), |
51 os.path.join('third_party','pylib'), | 51 os.path.join('third_party','pylib'), |
52 os.path.join('third_party','pywebsocket'), | 52 os.path.join('third_party','pywebsocket'), |
| 53 os.path.join('third_party','qunit'), |
53 os.path.join('third_party','syzygy'), | 54 os.path.join('third_party','syzygy'), |
54 os.path.join('tools','gn'), | 55 os.path.join('tools','gn'), |
55 | 56 |
56 # Chromium code in third_party. | 57 # Chromium code in third_party. |
57 os.path.join('third_party','fuzzymatch'), | 58 os.path.join('third_party','fuzzymatch'), |
58 os.path.join('tools', 'swarming_client'), | 59 os.path.join('tools', 'swarming_client'), |
59 | 60 |
60 # Stuff pulled in from chrome-internal for official builds/tools. | 61 # Stuff pulled in from chrome-internal for official builds/tools. |
61 os.path.join('third_party', 'clear_cache'), | 62 os.path.join('third_party', 'clear_cache'), |
62 os.path.join('third_party', 'gnu'), | 63 os.path.join('third_party', 'gnu'), |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 elif command == 'credits': | 460 elif command == 'credits': |
460 if not GenerateCredits(): | 461 if not GenerateCredits(): |
461 return 1 | 462 return 1 |
462 else: | 463 else: |
463 print __doc__ | 464 print __doc__ |
464 return 1 | 465 return 1 |
465 | 466 |
466 | 467 |
467 if __name__ == '__main__': | 468 if __name__ == '__main__': |
468 sys.exit(main()) | 469 sys.exit(main()) |
OLD | NEW |