| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 # Only binaries, used during development. | 56 # Only binaries, used during development. |
| 57 os.path.join('third_party','valgrind'), | 57 os.path.join('third_party','valgrind'), |
| 58 | 58 |
| 59 # Two directories that are the same as those in base/third_party. | 59 # Two directories that are the same as those in base/third_party. |
| 60 os.path.join('v8','src','third_party','dtoa'), | 60 os.path.join('v8','src','third_party','dtoa'), |
| 61 os.path.join('v8','src','third_party','valgrind'), | 61 os.path.join('v8','src','third_party','valgrind'), |
| 62 | 62 |
| 63 # Used for development and test, not in the shipping product. | 63 # Used for development and test, not in the shipping product. |
| 64 os.path.join('third_party','bidichecker'), | 64 os.path.join('third_party','bidichecker'), |
| 65 os.path.join('third_party','cygwin'), | 65 os.path.join('third_party','cygwin'), |
| 66 os.path.join('third_party','gold'), | |
| 67 os.path.join('third_party','lighttpd'), | 66 os.path.join('third_party','lighttpd'), |
| 68 os.path.join('third_party','mingw-w64'), | 67 os.path.join('third_party','mingw-w64'), |
| 69 os.path.join('third_party','pefile'), | 68 os.path.join('third_party','pefile'), |
| 70 os.path.join('third_party','python_26'), | 69 os.path.join('third_party','python_26'), |
| 71 | 70 |
| 72 # Stuff pulled in from chrome-internal for official builds/tools. | 71 # Stuff pulled in from chrome-internal for official builds/tools. |
| 73 os.path.join('third_party', 'clear_cache'), | 72 os.path.join('third_party', 'clear_cache'), |
| 74 os.path.join('third_party', 'gnu'), | 73 os.path.join('third_party', 'gnu'), |
| 75 os.path.join('third_party', 'googlemac'), | 74 os.path.join('third_party', 'googlemac'), |
| 76 os.path.join('third_party', 'pcre'), | 75 os.path.join('third_party', 'pcre'), |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 elif command == 'credits': | 332 elif command == 'credits': |
| 334 if not GenerateCredits(): | 333 if not GenerateCredits(): |
| 335 return 1 | 334 return 1 |
| 336 else: | 335 else: |
| 337 print __doc__ | 336 print __doc__ |
| 338 return 1 | 337 return 1 |
| 339 | 338 |
| 340 | 339 |
| 341 if __name__ == '__main__': | 340 if __name__ == '__main__': |
| 342 sys.exit(main()) | 341 sys.exit(main()) |
| OLD | NEW |