| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 'to "../.." relative to the script file, which ' | 520 'to "../.." relative to the script file, which ' |
| 524 'will normally be the repository root.') | 521 'will normally be the repository root.') |
| 525 option_parser.add_option('-v', '--verbose', action='store_true', | 522 option_parser.add_option('-v', '--verbose', action='store_true', |
| 526 default=False, help='Print debug logging') | 523 default=False, help='Print debug logging') |
| 527 option_parser.add_option('--ignore-suppressions', | 524 option_parser.add_option('--ignore-suppressions', |
| 528 action='store_true', | 525 action='store_true', |
| 529 default=False, | 526 default=False, |
| 530 help='Ignore path-specific license whitelist.') | 527 help='Ignore path-specific license whitelist.') |
| 531 options, args = option_parser.parse_args() | 528 options, args = option_parser.parse_args() |
| 532 main(options, args) | 529 main(options, args) |
| OLD | NEW |