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'), |
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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 elif command == 'credits': | 312 elif command == 'credits': |
312 if not GenerateCredits(): | 313 if not GenerateCredits(): |
313 return 1 | 314 return 1 |
314 else: | 315 else: |
315 print __doc__ | 316 print __doc__ |
316 return 1 | 317 return 1 |
317 | 318 |
318 | 319 |
319 if __name__ == '__main__': | 320 if __name__ == '__main__': |
320 sys.exit(main()) | 321 sys.exit(main()) |
OLD | NEW |