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 # http://crbug.com/332244 | |
|
Paweł Hajdan Jr.
2014/01/09 16:07:23
nit: Please put these just above 'UNKNOWN' so it's
| |
| 190 # https://bugs.freedesktop.org/show_bug.cgi?id=73401 | |
| 191 'third_party/fontconfig': [ | |
| 192 'UNKNOWN', | |
| 193 ], | |
| 189 'third_party/freetype2': [ # http://crbug.com/177319 | 194 'third_party/freetype2': [ # http://crbug.com/177319 |
| 190 'UNKNOWN', | 195 'UNKNOWN', |
| 191 ], | 196 ], |
| 192 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131 | 197 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131 |
| 193 'UNKNOWN', | 198 'UNKNOWN', |
| 194 ], | 199 ], |
| 195 'third_party/hunspell': [ # http://crbug.com/98134 | 200 'third_party/hunspell': [ # http://crbug.com/98134 |
| 196 'UNKNOWN', | 201 'UNKNOWN', |
| 197 ], | 202 ], |
| 198 'third_party/iccjpeg': [ # http://crbug.com/98137 | 203 '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', | 520 option_parser.add_option('--ignore-suppressions', |
| 516 action='store_true', | 521 action='store_true', |
| 517 default=False, | 522 default=False, |
| 518 help='Ignore path-specific license whitelist.') | 523 help='Ignore path-specific license whitelist.') |
| 519 options, args = option_parser.parse_args() | 524 options, args = option_parser.parse_args() |
| 520 return check_licenses(options, args) | 525 return check_licenses(options, args) |
| 521 | 526 |
| 522 | 527 |
| 523 if '__main__' == __name__: | 528 if '__main__' == __name__: |
| 524 sys.exit(main()) | 529 sys.exit(main()) |
| OLD | NEW |