| 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 21 matching lines...) Expand all Loading... |
| 32 os.path.join('third_party','valgrind'), | 32 os.path.join('third_party','valgrind'), |
| 33 | 33 |
| 34 # Used for development and test, not in the shipping product. | 34 # Used for development and test, not in the shipping product. |
| 35 os.path.join('third_party','bidichecker'), | 35 os.path.join('third_party','bidichecker'), |
| 36 os.path.join('third_party','cygwin'), | 36 os.path.join('third_party','cygwin'), |
| 37 os.path.join('third_party','gold'), | 37 os.path.join('third_party','gold'), |
| 38 os.path.join('third_party','lighttpd'), | 38 os.path.join('third_party','lighttpd'), |
| 39 os.path.join('third_party','mingw-w64'), | 39 os.path.join('third_party','mingw-w64'), |
| 40 os.path.join('third_party','pefile'), | 40 os.path.join('third_party','pefile'), |
| 41 os.path.join('third_party','python_26'), | 41 os.path.join('third_party','python_26'), |
| 42 os.path.join('third_party','pywebsocket'), |
| 42 | 43 |
| 43 # Stuff pulled in from chrome-internal for official builds/tools. | 44 # Stuff pulled in from chrome-internal for official builds/tools. |
| 44 os.path.join('third_party', 'clear_cache'), | 45 os.path.join('third_party', 'clear_cache'), |
| 45 os.path.join('third_party', 'gnu'), | 46 os.path.join('third_party', 'gnu'), |
| 46 os.path.join('third_party', 'googlemac'), | 47 os.path.join('third_party', 'googlemac'), |
| 47 os.path.join('third_party', 'pcre'), | 48 os.path.join('third_party', 'pcre'), |
| 48 os.path.join('third_party', 'psutils'), | 49 os.path.join('third_party', 'psutils'), |
| 49 os.path.join('third_party', 'sawbuck'), | 50 os.path.join('third_party', 'sawbuck'), |
| 50 | 51 |
| 51 # Redistribution does not require attribution in documentation. | 52 # Redistribution does not require attribution in documentation. |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 elif command == 'credits': | 428 elif command == 'credits': |
| 428 if not GenerateCredits(): | 429 if not GenerateCredits(): |
| 429 return 1 | 430 return 1 |
| 430 else: | 431 else: |
| 431 print __doc__ | 432 print __doc__ |
| 432 return 1 | 433 return 1 |
| 433 | 434 |
| 434 | 435 |
| 435 if __name__ == '__main__': | 436 if __name__ == '__main__': |
| 436 sys.exit(main()) | 437 sys.exit(main()) |
| OLD | NEW |