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

Side by Side Diff: tools/checklicenses/checklicenses.py

Issue 1054753002: Switch jsoncpp to be single DEPS entry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « DEPS ('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 """Makes sure that all files contain proper licensing information.""" 6 """Makes sure that all files contain proper licensing information."""
7 7
8 8
9 import json 9 import json
10 import optparse 10 import optparse
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 ], 203 ],
204 'third_party/hunspell': [ # http://crbug.com/98134 204 'third_party/hunspell': [ # http://crbug.com/98134
205 'UNKNOWN', 205 'UNKNOWN',
206 ], 206 ],
207 'third_party/iccjpeg': [ # http://crbug.com/98137 207 'third_party/iccjpeg': [ # http://crbug.com/98137
208 'UNKNOWN', 208 'UNKNOWN',
209 ], 209 ],
210 'third_party/icu': [ # http://crbug.com/98301 210 'third_party/icu': [ # http://crbug.com/98301
211 'UNKNOWN', 211 'UNKNOWN',
212 ], 212 ],
213 'third_party/jsoncpp/source': [
214 # https://github.com/open-source-parsers/jsoncpp/issues/234
215 'UNKNOWN',
216 ],
213 'third_party/lcov': [ # http://crbug.com/98304 217 'third_party/lcov': [ # http://crbug.com/98304
214 'UNKNOWN', 218 'UNKNOWN',
215 ], 219 ],
216 'third_party/lcov/contrib/galaxy/genflat.pl': [ 220 'third_party/lcov/contrib/galaxy/genflat.pl': [
217 'GPL (v2 or later)', 221 'GPL (v2 or later)',
218 ], 222 ],
219 'third_party/libevent': [ # http://crbug.com/98309 223 'third_party/libevent': [ # http://crbug.com/98309
220 'UNKNOWN', 224 'UNKNOWN',
221 ], 225 ],
222 'third_party/libjingle/source/talk': [ # http://crbug.com/98310 226 'third_party/libjingle/source/talk': [ # http://crbug.com/98310
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 action='store_true', 548 action='store_true',
545 default=False, 549 default=False,
546 help='Ignore path-specific license whitelist.') 550 help='Ignore path-specific license whitelist.')
547 option_parser.add_option('--json', help='Path to JSON output file') 551 option_parser.add_option('--json', help='Path to JSON output file')
548 options, args = option_parser.parse_args() 552 options, args = option_parser.parse_args()
549 return check_licenses(options, args) 553 return check_licenses(options, args)
550 554
551 555
552 if '__main__' == __name__: 556 if '__main__' == __name__:
553 sys.exit(main()) 557 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698