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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 os.path.join('third_party','gperf'), | 42 os.path.join('third_party','gperf'), |
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','python_26'), | |
53 os.path.join('third_party','pywebsocket'), | 52 os.path.join('third_party','pywebsocket'), |
54 os.path.join('third_party','syzygy'), | 53 os.path.join('third_party','syzygy'), |
55 os.path.join('tools','gn'), | 54 os.path.join('tools','gn'), |
56 | 55 |
57 # Chromium code in third_party. | 56 # Chromium code in third_party. |
58 os.path.join('third_party','fuzzymatch'), | 57 os.path.join('third_party','fuzzymatch'), |
59 os.path.join('tools', 'swarming_client'), | 58 os.path.join('tools', 'swarming_client'), |
60 | 59 |
61 # Stuff pulled in from chrome-internal for official builds/tools. | 60 # Stuff pulled in from chrome-internal for official builds/tools. |
62 os.path.join('third_party', 'clear_cache'), | 61 os.path.join('third_party', 'clear_cache'), |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 elif command == 'credits': | 454 elif command == 'credits': |
456 if not GenerateCredits(): | 455 if not GenerateCredits(): |
457 return 1 | 456 return 1 |
458 else: | 457 else: |
459 print __doc__ | 458 print __doc__ |
460 return 1 | 459 return 1 |
461 | 460 |
462 | 461 |
463 if __name__ == '__main__': | 462 if __name__ == '__main__': |
464 sys.exit(main()) | 463 sys.exit(main()) |
OLD | NEW |