| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 # http://crbug.com/98097 | 120 # http://crbug.com/98097 |
| 121 'gpu/GLES2': [ | 121 'gpu/GLES2': [ |
| 122 'UNKNOWN', | 122 'UNKNOWN', |
| 123 ], | 123 ], |
| 124 'gpu/KHR': [ | 124 'gpu/KHR': [ |
| 125 'UNKNOWN', | 125 'UNKNOWN', |
| 126 ], | 126 ], |
| 127 'gpu/gles2_conform_support/egl/native/EGL': [ | 127 'gpu/gles2_conform_support/egl/native/EGL': [ |
| 128 'UNKNOWN', | 128 'UNKNOWN', |
| 129 ], | 129 ], |
| 130 'gpu/EGL': [ |
| 131 'UNKNOWN', |
| 132 ], |
| 130 | 133 |
| 131 'native_client': [ # http://crbug.com/98099 | 134 'native_client': [ # http://crbug.com/98099 |
| 132 'UNKNOWN', | 135 'UNKNOWN', |
| 133 ], | 136 ], |
| 134 'native_client/toolchain': [ | 137 'native_client/toolchain': [ |
| 135 'BSD GPL (v2 or later)', | 138 'BSD GPL (v2 or later)', |
| 136 'BSD (2 clause) GPL (v2 or later)', | 139 'BSD (2 clause) GPL (v2 or later)', |
| 137 'BSD (3 clause) GPL (v2 or later)', | 140 'BSD (3 clause) GPL (v2 or later)', |
| 138 'BSL (v1.0) GPL', | 141 'BSL (v1.0) GPL', |
| 139 'GPL', | 142 'GPL', |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 'to "../.." relative to the script file, which ' | 516 'to "../.." relative to the script file, which ' |
| 514 'will normally be the repository root.') | 517 'will normally be the repository root.') |
| 515 option_parser.add_option('-v', '--verbose', action='store_true', | 518 option_parser.add_option('-v', '--verbose', action='store_true', |
| 516 default=False, help='Print debug logging') | 519 default=False, help='Print debug logging') |
| 517 option_parser.add_option('--ignore-suppressions', | 520 option_parser.add_option('--ignore-suppressions', |
| 518 action='store_true', | 521 action='store_true', |
| 519 default=False, | 522 default=False, |
| 520 help='Ignore path-specific license whitelist.') | 523 help='Ignore path-specific license whitelist.') |
| 521 options, args = option_parser.parse_args() | 524 options, args = option_parser.parse_args() |
| 522 main(options, args) | 525 main(options, args) |
| OLD | NEW |