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

Side by Side Diff: tools/licenses.py

Issue 9316002: linux: use an in-tree copy of gold by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: new gold Created 8 years, 10 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 | « build/common.gypi ('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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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())
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698