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

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: move upstream bug link & remove crbug link 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 | « third_party/devscripts/licensecheck.pl ('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 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': [
190 # https://bugs.freedesktop.org/show_bug.cgi?id=73401
191 'UNKNOWN',
192 ],
189 'third_party/freetype2': [ # http://crbug.com/177319 193 'third_party/freetype2': [ # http://crbug.com/177319
190 'UNKNOWN', 194 'UNKNOWN',
191 ], 195 ],
192 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131 196 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131
193 'UNKNOWN', 197 'UNKNOWN',
194 ], 198 ],
195 'third_party/hunspell': [ # http://crbug.com/98134 199 'third_party/hunspell': [ # http://crbug.com/98134
196 'UNKNOWN', 200 'UNKNOWN',
197 ], 201 ],
198 'third_party/iccjpeg': [ # http://crbug.com/98137 202 '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', 519 option_parser.add_option('--ignore-suppressions',
516 action='store_true', 520 action='store_true',
517 default=False, 521 default=False,
518 help='Ignore path-specific license whitelist.') 522 help='Ignore path-specific license whitelist.')
519 options, args = option_parser.parse_args() 523 options, args = option_parser.parse_args()
520 return check_licenses(options, args) 524 return check_licenses(options, args)
521 525
522 526
523 if '__main__' == __name__: 527 if '__main__' == __name__:
524 sys.exit(main()) 528 sys.exit(main())
OLDNEW
« no previous file with comments | « third_party/devscripts/licensecheck.pl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698