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

Side by Side Diff: tools/licenses.py

Issue 137023003: Remove third_party\python_26. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert .gitmodules, otherwise try jobs fail Created 6 years, 11 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 | « chrome/test/functional/pyauto_functional.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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 os.path.join('third_party','gperf'), 42 os.path.join('third_party','gperf'),
43 os.path.join('third_party','lighttpd'), 43 os.path.join('third_party','lighttpd'),
44 os.path.join('third_party','llvm'), 44 os.path.join('third_party','llvm'),
45 os.path.join('third_party','llvm-build'), 45 os.path.join('third_party','llvm-build'),
46 os.path.join('third_party','mingw-w64'), 46 os.path.join('third_party','mingw-w64'),
47 os.path.join('third_party','nacl_sdk_binaries'), 47 os.path.join('third_party','nacl_sdk_binaries'),
48 os.path.join('third_party','pefile'), 48 os.path.join('third_party','pefile'),
49 os.path.join('third_party','perl'), 49 os.path.join('third_party','perl'),
50 os.path.join('third_party','psyco_win32'), 50 os.path.join('third_party','psyco_win32'),
51 os.path.join('third_party','pylib'), 51 os.path.join('third_party','pylib'),
52 os.path.join('third_party','python_26'),
53 os.path.join('third_party','pywebsocket'), 52 os.path.join('third_party','pywebsocket'),
54 os.path.join('third_party','syzygy'), 53 os.path.join('third_party','syzygy'),
55 os.path.join('tools','gn'), 54 os.path.join('tools','gn'),
56 55
57 # Chromium code in third_party. 56 # Chromium code in third_party.
58 os.path.join('third_party','fuzzymatch'), 57 os.path.join('third_party','fuzzymatch'),
59 os.path.join('tools', 'swarming_client'), 58 os.path.join('tools', 'swarming_client'),
60 59
61 # Stuff pulled in from chrome-internal for official builds/tools. 60 # Stuff pulled in from chrome-internal for official builds/tools.
62 os.path.join('third_party', 'clear_cache'), 61 os.path.join('third_party', 'clear_cache'),
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 elif command == 'credits': 454 elif command == 'credits':
456 if not GenerateCredits(): 455 if not GenerateCredits():
457 return 1 456 return 1
458 else: 457 else:
459 print __doc__ 458 print __doc__
460 return 1 459 return 1
461 460
462 461
463 if __name__ == '__main__': 462 if __name__ == '__main__':
464 sys.exit(main()) 463 sys.exit(main())
OLDNEW
« no previous file with comments | « chrome/test/functional/pyauto_functional.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698