Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(774)

Side by Side Diff: tools/licenses.py

Issue 10857052: Import pywebsocket as third_party/pywebsocket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/pywebsocket/README.chromium ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « third_party/pywebsocket/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698