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

Side by Side Diff: tools/licenses.py

Issue 404543003: adb_profile_chrome: Check in perf-to-tracing conversion script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added README.chromium. Created 6 years, 5 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 | « no previous file | tools/profile_chrome/perf_controller.py » ('j') | 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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())
OLDNEW
« no previous file with comments | « no previous file | tools/profile_chrome/perf_controller.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698