OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 'GPL', | 219 'GPL', |
220 'GPL (v2 or later)', | 220 'GPL (v2 or later)', |
221 'UNKNOWN', # http://crbug.com/98123 | 221 'UNKNOWN', # http://crbug.com/98123 |
222 ], | 222 ], |
223 'third_party/gles2_book': [ # http://crbug.com/98130 | 223 'third_party/gles2_book': [ # http://crbug.com/98130 |
224 'UNKNOWN', | 224 'UNKNOWN', |
225 ], | 225 ], |
226 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131 | 226 'third_party/gles2_conform/GTF_ES': [ # http://crbug.com/98131 |
227 'UNKNOWN', | 227 'UNKNOWN', |
228 ], | 228 ], |
229 'third_party/gpsd/release-2.38/gps.h': [ # http://crbug.com/98132 | |
230 'UNKNOWN', | |
231 ], | |
232 'third_party/harfbuzz': [ # http://crbug.com/98133 | 229 'third_party/harfbuzz': [ # http://crbug.com/98133 |
233 'UNKNOWN', | 230 'UNKNOWN', |
234 ], | 231 ], |
235 'third_party/hunspell': [ # http://crbug.com/98134 | 232 'third_party/hunspell': [ # http://crbug.com/98134 |
236 'UNKNOWN', | 233 'UNKNOWN', |
237 ], | 234 ], |
238 'third_party/iccjpeg': [ # http://crbug.com/98137 | 235 'third_party/iccjpeg': [ # http://crbug.com/98137 |
239 'UNKNOWN', | 236 'UNKNOWN', |
240 ], | 237 ], |
241 'third_party/icu': [ # http://crbug.com/98301 | 238 'third_party/icu': [ # http://crbug.com/98301 |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 'to "../.." relative to the script file, which ' | 516 'to "../.." relative to the script file, which ' |
520 'will normally be the repository root.') | 517 'will normally be the repository root.') |
521 option_parser.add_option('-v', '--verbose', action='store_true', | 518 option_parser.add_option('-v', '--verbose', action='store_true', |
522 default=False, help='Print debug logging') | 519 default=False, help='Print debug logging') |
523 option_parser.add_option('--ignore-suppressions', | 520 option_parser.add_option('--ignore-suppressions', |
524 action='store_true', | 521 action='store_true', |
525 default=False, | 522 default=False, |
526 help='Ignore path-specific license whitelist.') | 523 help='Ignore path-specific license whitelist.') |
527 options, args = option_parser.parse_args() | 524 options, args = option_parser.parse_args() |
528 main(options, args) | 525 main(options, args) |
OLD | NEW |