| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 os.path.join('third_party','mingw-w64'), | 48 os.path.join('third_party','mingw-w64'), |
| 49 os.path.join('third_party','nacl_sdk_binaries'), | 49 os.path.join('third_party','nacl_sdk_binaries'), |
| 50 os.path.join('third_party','pefile'), | 50 os.path.join('third_party','pefile'), |
| 51 os.path.join('third_party','perl'), | 51 os.path.join('third_party','perl'), |
| 52 os.path.join('third_party','psyco_win32'), | 52 os.path.join('third_party','psyco_win32'), |
| 53 os.path.join('third_party','pylib'), | 53 os.path.join('third_party','pylib'), |
| 54 os.path.join('third_party','pywebsocket'), | 54 os.path.join('third_party','pywebsocket'), |
| 55 os.path.join('third_party','qunit'), | 55 os.path.join('third_party','qunit'), |
| 56 os.path.join('third_party','sinonjs'), | 56 os.path.join('third_party','sinonjs'), |
| 57 os.path.join('third_party','syzygy'), | 57 os.path.join('third_party','syzygy'), |
| 58 os.path.join('tools', 'profile_chrome', 'third_party'), |
| 58 | 59 |
| 59 # Chromium code in third_party. | 60 # Chromium code in third_party. |
| 60 os.path.join('third_party','fuzzymatch'), | 61 os.path.join('third_party','fuzzymatch'), |
| 61 os.path.join('tools', 'swarming_client'), | 62 os.path.join('tools', 'swarming_client'), |
| 62 | 63 |
| 63 # Stuff pulled in from chrome-internal for official builds/tools. | 64 # Stuff pulled in from chrome-internal for official builds/tools. |
| 64 os.path.join('third_party', 'clear_cache'), | 65 os.path.join('third_party', 'clear_cache'), |
| 65 os.path.join('third_party', 'gnu'), | 66 os.path.join('third_party', 'gnu'), |
| 66 os.path.join('third_party', 'googlemac'), | 67 os.path.join('third_party', 'googlemac'), |
| 67 os.path.join('third_party', 'pcre'), | 68 os.path.join('third_party', 'pcre'), |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 elif command == 'credits': | 460 elif command == 'credits': |
| 460 if not GenerateCredits(): | 461 if not GenerateCredits(): |
| 461 return 1 | 462 return 1 |
| 462 else: | 463 else: |
| 463 print __doc__ | 464 print __doc__ |
| 464 return 1 | 465 return 1 |
| 465 | 466 |
| 466 | 467 |
| 467 if __name__ == '__main__': | 468 if __name__ == '__main__': |
| 468 sys.exit(main()) | 469 sys.exit(main()) |
| OLD | NEW |