OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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'), |
66 os.path.join('third_party','lighttpd'), | 67 os.path.join('third_party','lighttpd'), |
67 os.path.join('third_party','mingw-w64'), | 68 os.path.join('third_party','mingw-w64'), |
68 os.path.join('third_party','pefile'), | 69 os.path.join('third_party','pefile'), |
69 os.path.join('third_party','python_26'), | 70 os.path.join('third_party','python_26'), |
70 | 71 |
71 # Stuff pulled in from chrome-internal for official builds/tools. | 72 # Stuff pulled in from chrome-internal for official builds/tools. |
72 os.path.join('third_party', 'clear_cache'), | 73 os.path.join('third_party', 'clear_cache'), |
73 os.path.join('third_party', 'gnu'), | 74 os.path.join('third_party', 'gnu'), |
74 os.path.join('third_party', 'googlemac'), | 75 os.path.join('third_party', 'googlemac'), |
75 os.path.join('third_party', 'pcre'), | 76 os.path.join('third_party', 'pcre'), |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 elif command == 'credits': | 305 elif command == 'credits': |
305 if not GenerateCredits(): | 306 if not GenerateCredits(): |
306 return 1 | 307 return 1 |
307 else: | 308 else: |
308 print __doc__ | 309 print __doc__ |
309 return 1 | 310 return 1 |
310 | 311 |
311 | 312 |
312 if __name__ == '__main__': | 313 if __name__ == '__main__': |
313 sys.exit(main()) | 314 sys.exit(main()) |
OLD | NEW |