| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'third_party/libusb/src/autogen.sh': [ | 256 'third_party/libusb/src/autogen.sh': [ |
| 257 'UNKNOWN', | 257 'UNKNOWN', |
| 258 ], | 258 ], |
| 259 'third_party/libusb/src/config.h': [ | 259 'third_party/libusb/src/config.h': [ |
| 260 'UNKNOWN', | 260 'UNKNOWN', |
| 261 ], | 261 ], |
| 262 'third_party/libusb/src/msvc/config.h': [ | 262 'third_party/libusb/src/msvc/config.h': [ |
| 263 'UNKNOWN', | 263 'UNKNOWN', |
| 264 ], | 264 ], |
| 265 | 265 |
| 266 # The package has a compatible COPYING file and most source files conform, | |
| 267 # but there are several exceptions. | |
| 268 # TODO(posciak,fischman): remove this exception once upstream makes all | |
| 269 # their files conform. https://bugs.freedesktop.org/show_bug.cgi?id=49588 | |
| 270 # http://crbug.com/126466 | |
| 271 'third_party/libva/va/va_x11.h': [ | |
| 272 'UNKNOWN', | |
| 273 ], | |
| 274 'third_party/libva/va/va_android.h': [ | |
| 275 'UNKNOWN', | |
| 276 ], | |
| 277 'third_party/libva/va/x11/va_dricommon.h': [ | |
| 278 'UNKNOWN', | |
| 279 ], | |
| 280 'third_party/libva/va/x11/va_dri2tokens.h': [ | |
| 281 'UNKNOWN', | |
| 282 ], | |
| 283 'third_party/libva/va/x11/va_dri2str.h': [ | |
| 284 'UNKNOWN', | |
| 285 ], | |
| 286 'third_party/libva/va/x11/va_dri2.h': [ | |
| 287 'UNKNOWN', | |
| 288 ], | |
| 289 'third_party/libva/va/va_egl.h': [ | |
| 290 'UNKNOWN', | |
| 291 ], | |
| 292 'third_party/libva/va/egl/va_egl_impl.h': [ | |
| 293 'UNKNOWN', | |
| 294 ], | |
| 295 'third_party/libva/va/egl/va_egl_private.h': [ | |
| 296 'UNKNOWN', | |
| 297 ], | |
| 298 | |
| 299 'third_party/libvpx/source': [ # http://crbug.com/98319 | 266 'third_party/libvpx/source': [ # http://crbug.com/98319 |
| 300 'UNKNOWN', | 267 'UNKNOWN', |
| 301 ], | 268 ], |
| 302 'third_party/libvpx/source/libvpx/examples/includes': [ | 269 'third_party/libvpx/source/libvpx/examples/includes': [ |
| 303 'GPL (v2 or later)', | 270 'GPL (v2 or later)', |
| 304 ], | 271 ], |
| 305 'third_party/libwebp': [ # http://crbug.com/98448 | 272 'third_party/libwebp': [ # http://crbug.com/98448 |
| 306 'UNKNOWN', | 273 'UNKNOWN', |
| 307 ], | 274 ], |
| 308 'third_party/libxml': [ | 275 'third_party/libxml': [ |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 option_parser.add_option('--ignore-suppressions', | 506 option_parser.add_option('--ignore-suppressions', |
| 540 action='store_true', | 507 action='store_true', |
| 541 default=False, | 508 default=False, |
| 542 help='Ignore path-specific license whitelist.') | 509 help='Ignore path-specific license whitelist.') |
| 543 options, args = option_parser.parse_args() | 510 options, args = option_parser.parse_args() |
| 544 return check_licenses(options, args) | 511 return check_licenses(options, args) |
| 545 | 512 |
| 546 | 513 |
| 547 if '__main__' == __name__: | 514 if '__main__' == __name__: |
| 548 sys.exit(main()) | 515 sys.exit(main()) |
| OLD | NEW |