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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 277 'third_party/libusb/src/msvc/config.h': [ | 277 'third_party/libusb/src/msvc/config.h': [ |
| 278 'UNKNOWN', | 278 'UNKNOWN', |
| 279 ], | 279 ], |
| 280 | 280 |
| 281 'third_party/libvpx/source': [ # http://crbug.com/98319 | 281 'third_party/libvpx/source': [ # http://crbug.com/98319 |
| 282 'UNKNOWN', | 282 'UNKNOWN', |
| 283 ], | 283 ], |
| 284 'third_party/libvpx/source/libvpx/examples/includes': [ | 284 'third_party/libvpx/source/libvpx/examples/includes': [ |
| 285 'GPL (v2 or later)', | 285 'GPL (v2 or later)', |
| 286 ], | 286 ], |
| 287 'third_party/libwebp': [ # http://crbug.com/98448 | 287 'third_party/libwebp': [ |
| 288 'UNKNOWN', | 288 'BSD (3 clause)', |
|
Lei Zhang
2013/03/22 02:16:04
Shouldn't you be able to remove this block? BSD (3
jzern
2013/03/22 02:37:49
Oh yes, I wasn't thinking of the use of the list w
| |
| 289 ], | 289 ], |
| 290 'third_party/libxml': [ | 290 'third_party/libxml': [ |
| 291 'UNKNOWN', | 291 'UNKNOWN', |
| 292 ], | 292 ], |
| 293 'third_party/libxslt': [ | 293 'third_party/libxslt': [ |
| 294 'UNKNOWN', | 294 'UNKNOWN', |
| 295 ], | 295 ], |
| 296 'third_party/lzma_sdk': [ | 296 'third_party/lzma_sdk': [ |
| 297 'UNKNOWN', | 297 'UNKNOWN', |
| 298 ], | 298 ], |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 524 option_parser.add_option('--ignore-suppressions', | 524 option_parser.add_option('--ignore-suppressions', |
| 525 action='store_true', | 525 action='store_true', |
| 526 default=False, | 526 default=False, |
| 527 help='Ignore path-specific license whitelist.') | 527 help='Ignore path-specific license whitelist.') |
| 528 options, args = option_parser.parse_args() | 528 options, args = option_parser.parse_args() |
| 529 return check_licenses(options, args) | 529 return check_licenses(options, args) |
| 530 | 530 |
| 531 | 531 |
| 532 if '__main__' == __name__: | 532 if '__main__' == __name__: |
| 533 sys.exit(main()) | 533 sys.exit(main()) |
| OLD | NEW |