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. https://bugs.freedesktop.org/show_bug.cgi?id=49588 | |
268 # http://crbug.com/126466 | |
269 'third_party/libva/va/va_x11.h': [ | |
Paweł Hajdan Jr.
2012/05/07 15:49:26
Make sure to only list files present in the CL (I
Ami GONE FROM CHROMIUM
2012/05/07 15:52:58
Done.
| |
270 'UNKNOWN', | |
271 ], | |
272 'third_party/libva/va/va_dummy.h': [ | |
273 'UNKNOWN', | |
274 ], | |
275 'third_party/libva/va/va_android.h': [ | |
276 'UNKNOWN', | |
277 ], | |
278 'third_party/libva/va/x11/va_dricommon.h': [ | |
279 'UNKNOWN', | |
280 ], | |
281 'third_party/libva/va/x11/va_dri2tokens.h': [ | |
282 'UNKNOWN', | |
283 ], | |
284 'third_party/libva/va/x11/va_dri2str.h': [ | |
285 'UNKNOWN', | |
286 ], | |
287 'third_party/libva/va/x11/va_dri2.h': [ | |
288 'UNKNOWN', | |
289 ], | |
290 'third_party/libva/va/va_egl.h': [ | |
291 'UNKNOWN', | |
292 ], | |
293 'third_party/libva/va/egl/va_egl_impl.h': [ | |
294 'UNKNOWN', | |
295 ], | |
296 'third_party/libva/va/egl/va_egl_private.h': [ | |
297 'UNKNOWN', | |
298 ], | |
299 'third_party/libva/va/egl/va_egl_impl.c': [ | |
300 'UNKNOWN', | |
301 ], | |
302 | |
264 'third_party/libvpx/source': [ # http://crbug.com/98319 | 303 'third_party/libvpx/source': [ # http://crbug.com/98319 |
265 'UNKNOWN', | 304 'UNKNOWN', |
266 ], | 305 ], |
267 'third_party/libvpx/source/libvpx/examples/includes': [ | 306 'third_party/libvpx/source/libvpx/examples/includes': [ |
268 'GPL (v2 or later)', | 307 'GPL (v2 or later)', |
269 ], | 308 ], |
270 'third_party/libwebp': [ # http://crbug.com/98448 | 309 'third_party/libwebp': [ # http://crbug.com/98448 |
271 'UNKNOWN', | 310 'UNKNOWN', |
272 ], | 311 ], |
273 'third_party/libxml': [ | 312 'third_party/libxml': [ |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
504 option_parser.add_option('--ignore-suppressions', | 543 option_parser.add_option('--ignore-suppressions', |
505 action='store_true', | 544 action='store_true', |
506 default=False, | 545 default=False, |
507 help='Ignore path-specific license whitelist.') | 546 help='Ignore path-specific license whitelist.') |
508 options, args = option_parser.parse_args() | 547 options, args = option_parser.parse_args() |
509 return check_licenses(options, args) | 548 return check_licenses(options, args) |
510 | 549 |
511 | 550 |
512 if '__main__' == __name__: | 551 if '__main__' == __name__: |
513 sys.exit(main()) | 552 sys.exit(main()) |
OLD | NEW |