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

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

Issue 127213003: Whitelist third_party/fontconfig in licensecheck (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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 optparse 9 import optparse
10 import os.path 10 import os.path
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 ], 179 ],
180 'third_party/expat/files/lib': [ # http://crbug.com/98121 180 'third_party/expat/files/lib': [ # http://crbug.com/98121
181 'UNKNOWN', 181 'UNKNOWN',
182 ], 182 ],
183 'third_party/ffmpeg': [ 183 'third_party/ffmpeg': [
184 'GPL', 184 'GPL',
185 'GPL (v2)', 185 'GPL (v2)',
186 'GPL (v2 or later)', 186 'GPL (v2 or later)',
187 'UNKNOWN', # http://crbug.com/98123 187 'UNKNOWN', # http://crbug.com/98123
188 ], 188 ],
189 'third_party/fontconfig': [ # http://crbug.com/332244
Paweł Hajdan Jr. 2014/01/08 13:50:06 Please file an upstream bug for files that do not
Paweł Hajdan Jr. 2014/01/09 11:02:18 Please do this. I'm fine with the licensecheck.pl
190 'UNKNOWN',
191 ],
189 'third_party/freetype2': [ # http://crbug.com/177319 192 'third_party/freetype2': [ # http://crbug.com/177319
190 'UNKNOWN', 193 'UNKNOWN',
191 ], 194 ],
192 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131 195 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131
193 'UNKNOWN', 196 'UNKNOWN',
194 ], 197 ],
195 'third_party/hunspell': [ # http://crbug.com/98134 198 'third_party/hunspell': [ # http://crbug.com/98134
196 'UNKNOWN', 199 'UNKNOWN',
197 ], 200 ],
198 'third_party/iccjpeg': [ # http://crbug.com/98137 201 'third_party/iccjpeg': [ # http://crbug.com/98137
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 option_parser.add_option('--ignore-suppressions', 518 option_parser.add_option('--ignore-suppressions',
516 action='store_true', 519 action='store_true',
517 default=False, 520 default=False,
518 help='Ignore path-specific license whitelist.') 521 help='Ignore path-specific license whitelist.')
519 options, args = option_parser.parse_args() 522 options, args = option_parser.parse_args()
520 return check_licenses(options, args) 523 return check_licenses(options, args)
521 524
522 525
523 if '__main__' == __name__: 526 if '__main__' == __name__:
524 sys.exit(main()) 527 sys.exit(main())
OLDNEW
« third_party/devscripts/licensecheck.pl ('K') | « third_party/devscripts/licensecheck.pl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698