| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/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 """Checks third-party licenses for the purposes of the Android WebView build. | 6 """Checks third-party licenses for the purposes of the Android WebView build. |
| 7 | 7 |
| 8 The Android tree includes a snapshot of Chromium in order to power the system | 8 The Android tree includes a snapshot of Chromium in order to power the system |
| 9 WebView. This tool checks that all code uses open-source licenses compatible | 9 WebView. This tool checks that all code uses open-source licenses compatible |
| 10 with Android, and that we meet the requirements of those licenses. It can also | 10 with Android, and that we meet the requirements of those licenses. It can also |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 import known_issues | 33 import known_issues |
| 34 | 34 |
| 35 def GetIncompatibleDirectories(): | 35 def GetIncompatibleDirectories(): |
| 36 """Gets a list of third-party directories which use licenses incompatible | 36 """Gets a list of third-party directories which use licenses incompatible |
| 37 with Android. This is used by the snapshot tool and the AOSP bot. | 37 with Android. This is used by the snapshot tool and the AOSP bot. |
| 38 Returns: | 38 Returns: |
| 39 A list of directories. | 39 A list of directories. |
| 40 """ | 40 """ |
| 41 | 41 |
| 42 whitelist = [ | 42 whitelist = [ |
| 43 'A(pple )?PSL 2(\.0)?', |
| 43 'Apache( Version)? 2(\.0)?', | 44 'Apache( Version)? 2(\.0)?', |
| 44 '(New )?([23]-Clause )?BSD( [23]-Clause)?( with advertising clause)?', | 45 '(New )?([23]-Clause )?BSD( [23]-Clause)?( with advertising clause)?', |
| 45 'L?GPL ?v?2(\.[01])?( or later)?', | 46 'L?GPL ?v?2(\.[01])?( or later)?', |
| 46 'MIT(/X11)?(-like)?', | 47 'MIT(/X11)?(-like)?', |
| 47 'MPL 1\.1 ?/ ?GPL 2(\.0)? ?/ ?LGPL 2\.1', | 48 'MPL 1\.1 ?/ ?GPL 2(\.0)? ?/ ?LGPL 2\.1', |
| 48 'MPL 2(\.0)?', | 49 'MPL 2(\.0)?', |
| 49 'Microsoft Limited Public License', | 50 'Microsoft Limited Public License', |
| 50 'Microsoft Permissive License', | 51 'Microsoft Permissive License', |
| 51 'Public Domain', | 52 'Public Domain', |
| 52 'Python', | 53 'Python', |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 print ("Incompatibly licensed directories found:" + | 307 print ("Incompatibly licensed directories found:" + |
| 307 "\n".join(incompatible_directories)) | 308 "\n".join(incompatible_directories)) |
| 308 return ScanResult.Errors | 309 return ScanResult.Errors |
| 309 return ScanResult.Ok | 310 return ScanResult.Ok |
| 310 | 311 |
| 311 parser.print_help() | 312 parser.print_help() |
| 312 return ScanResult.Errors | 313 return ScanResult.Errors |
| 313 | 314 |
| 314 if __name__ == '__main__': | 315 if __name__ == '__main__': |
| 315 sys.exit(main()) | 316 sys.exit(main()) |
| OLD | NEW |