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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 | 162 |
163 # http://code.google.com/p/open-vcdiff/issues/detail?id=31 | 163 # http://code.google.com/p/open-vcdiff/issues/detail?id=31 |
164 'sdch/open-vcdiff': [ | 164 'sdch/open-vcdiff': [ |
165 'UNKNOWN', | 165 'UNKNOWN', |
166 ], | 166 ], |
167 | 167 |
168 'third_party/WebKit': [ | 168 'third_party/WebKit': [ |
169 'UNKNOWN', | 169 'UNKNOWN', |
170 ], | 170 ], |
171 'third_party/WebKit/Source/ThirdParty/ANGLE/src/compiler': [ | 171 'third_party/WebKit/Source/ThirdParty/ANGLE/src/compiler': [ |
| 172 # http://crbug.com/105232 |
172 'GPL', | 173 'GPL', |
| 174 'GPL (v3 or later)', |
173 ], | 175 ], |
174 'third_party/WebKit/Source/JavaScriptCore/tests/mozilla': [ | 176 'third_party/WebKit/Source/JavaScriptCore/tests/mozilla': [ |
175 'GPL', | 177 'GPL', |
176 'GPL (unversioned/unknown version)', | 178 'GPL (unversioned/unknown version)', |
177 ], | 179 ], |
178 'third_party/active_doc': [ # http://crbug.com/98113 | 180 'third_party/active_doc': [ # http://crbug.com/98113 |
179 'UNKNOWN', | 181 'UNKNOWN', |
180 ], | 182 ], |
181 | 183 |
182 # http://code.google.com/p/angleproject/issues/detail?id=217 | 184 # http://code.google.com/p/angleproject/issues/detail?id=217 |
183 'third_party/angle': [ | 185 'third_party/angle': [ |
184 'UNKNOWN', | 186 'UNKNOWN', |
185 ], | 187 ], |
186 | 188 |
187 'third_party/angle/src/compiler': [ | 189 'third_party/angle/src/compiler': [ |
| 190 # http://crbug.com/105232 |
188 'GPL', | 191 'GPL', |
| 192 'GPL (v3 or later)', |
189 ], | 193 ], |
190 'third_party/ashmem/ashmem.h': [ # http://crbug.com/98116 | 194 'third_party/ashmem/ashmem.h': [ # http://crbug.com/98116 |
191 'UNKNOWN', | 195 'UNKNOWN', |
192 ], | 196 ], |
193 'third_party/bsdiff/mbsdiff.cc': [ | 197 'third_party/bsdiff/mbsdiff.cc': [ |
194 'UNKNOWN', | 198 'UNKNOWN', |
195 ], | 199 ], |
196 'third_party/bzip2': [ | 200 'third_party/bzip2': [ |
197 'UNKNOWN', | 201 'UNKNOWN', |
198 ], | 202 ], |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 'to "../.." relative to the script file, which ' | 507 'to "../.." relative to the script file, which ' |
504 'will normally be the repository root.') | 508 'will normally be the repository root.') |
505 option_parser.add_option('-v', '--verbose', action='store_true', | 509 option_parser.add_option('-v', '--verbose', action='store_true', |
506 default=False, help='Print debug logging') | 510 default=False, help='Print debug logging') |
507 option_parser.add_option('--ignore-suppressions', | 511 option_parser.add_option('--ignore-suppressions', |
508 action='store_true', | 512 action='store_true', |
509 default=False, | 513 default=False, |
510 help='Ignore path-specific license whitelist.') | 514 help='Ignore path-specific license whitelist.') |
511 options, args = option_parser.parse_args() | 515 options, args = option_parser.parse_args() |
512 main(options, args) | 516 main(options, args) |
OLD | NEW |