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

Side by Side Diff: tools/licenses.py

Issue 9622010: Move README.chromium and LICENSE in third_party/android/ to correct location (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move to third_party/android_testrunner/ Created 8 years, 9 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/android_testrunner/run_command.py ('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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 os.path.join('third_party','lss'), 54 os.path.join('third_party','lss'),
55 55
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','android_testrunner'),
64 os.path.join('third_party','bidichecker'), 65 os.path.join('third_party','bidichecker'),
65 os.path.join('third_party','cygwin'), 66 os.path.join('third_party','cygwin'),
66 os.path.join('third_party','gold'), 67 os.path.join('third_party','gold'),
67 os.path.join('third_party','lighttpd'), 68 os.path.join('third_party','lighttpd'),
68 os.path.join('third_party','mingw-w64'), 69 os.path.join('third_party','mingw-w64'),
69 os.path.join('third_party','pefile'), 70 os.path.join('third_party','pefile'),
70 os.path.join('third_party','python_26'), 71 os.path.join('third_party','python_26'),
71 72
72 # Stuff pulled in from chrome-internal for official builds/tools. 73 # Stuff pulled in from chrome-internal for official builds/tools.
73 os.path.join('third_party', 'clear_cache'), 74 os.path.join('third_party', 'clear_cache'),
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 elif command == 'credits': 334 elif command == 'credits':
334 if not GenerateCredits(): 335 if not GenerateCredits():
335 return 1 336 return 1
336 else: 337 else:
337 print __doc__ 338 print __doc__
338 return 1 339 return 1
339 340
340 341
341 if __name__ == '__main__': 342 if __name__ == '__main__':
342 sys.exit(main()) 343 sys.exit(main())
OLDNEW
« no previous file with comments | « third_party/android_testrunner/run_command.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698