Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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()) |
| OLD | NEW |