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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
254 'third_party/libusb/autogen.sh': [ | 254 'third_party/libusb/autogen.sh': [ |
255 'UNKNOWN', | 255 'UNKNOWN', |
256 ], | 256 ], |
257 'third_party/libusb/config.h': [ | 257 'third_party/libusb/config.h': [ |
258 'UNKNOWN', | 258 'UNKNOWN', |
259 ], | 259 ], |
260 'third_party/libusb/msvc/config.h': [ | 260 'third_party/libusb/msvc/config.h': [ |
261 'UNKNOWN', | 261 'UNKNOWN', |
262 ], | 262 ], |
263 | 263 |
264 # The package has a compatible COPYING file and most source files conform, | |
265 # but there are several exceptions. | |
266 # TODO(posciak,fischman): remove this exception once upstream makes all | |
267 # their files conform. | |
268 'third_party/libva/': [ # http://crbug.com/126466 | |
Paweł Hajdan Jr.
2012/05/07 15:17:29
1. Please file an upstream bug and use the upstrea
| |
269 'UNKNOWN', | |
270 ], | |
271 | |
264 'third_party/libvpx/source': [ # http://crbug.com/98319 | 272 'third_party/libvpx/source': [ # http://crbug.com/98319 |
265 'UNKNOWN', | 273 'UNKNOWN', |
266 ], | 274 ], |
267 'third_party/libvpx/source/libvpx/examples/includes': [ | 275 'third_party/libvpx/source/libvpx/examples/includes': [ |
268 'GPL (v2 or later)', | 276 'GPL (v2 or later)', |
269 ], | 277 ], |
270 'third_party/libwebp': [ # http://crbug.com/98448 | 278 'third_party/libwebp': [ # http://crbug.com/98448 |
271 'UNKNOWN', | 279 'UNKNOWN', |
272 ], | 280 ], |
273 'third_party/libxml': [ | 281 'third_party/libxml': [ |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
504 option_parser.add_option('--ignore-suppressions', | 512 option_parser.add_option('--ignore-suppressions', |
505 action='store_true', | 513 action='store_true', |
506 default=False, | 514 default=False, |
507 help='Ignore path-specific license whitelist.') | 515 help='Ignore path-specific license whitelist.') |
508 options, args = option_parser.parse_args() | 516 options, args = option_parser.parse_args() |
509 return check_licenses(options, args) | 517 return check_licenses(options, args) |
510 | 518 |
511 | 519 |
512 if '__main__' == __name__: | 520 if '__main__' == __name__: |
513 sys.exit(main()) | 521 sys.exit(main()) |
OLD | NEW |