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 23 matching lines...) Expand all Loading... |
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. | 37 with Android. This is used by the snapshot tool. |
38 Returns: | 38 Returns: |
39 A list of directories. | 39 A list of directories. |
40 """ | 40 """ |
41 | 41 |
42 whitelist = [ | 42 whitelist = [ |
43 'Apache( Version)? 2(\.0)?', | 43 'Apache( Version)? 2(\.0)?', |
44 '(New )?BSD( [23]-Clause)?( with advertising clause)?', | 44 '(New )?([23]-Clause )?BSD( [23]-Clause)?( with advertising clause)?', |
45 'L?GPL ?v?2(\.[01])?( or later)?', | 45 'L?GPL ?v?2(\.[01])?( or later)?', |
46 'MIT(/X11)?(-like)?', | 46 'MIT(/X11)?(-like)?', |
47 'MPL 1\.1 ?/ ?GPL 2(\.0)? ?/ ?LGPL 2\.1', | 47 'MPL 1\.1 ?/ ?GPL 2(\.0)? ?/ ?LGPL 2\.1', |
48 'MPL 2(\.0)?', | 48 'MPL 2(\.0)?', |
49 'Microsoft Limited Public License', | 49 'Microsoft Limited Public License', |
50 'Microsoft Permissive License', | 50 'Microsoft Permissive License', |
51 'Public Domain', | 51 'Public Domain', |
52 'SGI Free Software License B', | 52 'SGI Free Software License B', |
53 'X11', | 53 'X11', |
54 ] | 54 ] |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 return scan_result | 282 return scan_result |
283 elif args[0] == 'notice': | 283 elif args[0] == 'notice': |
284 print GenerateNoticeFile() | 284 print GenerateNoticeFile() |
285 return ScanResult.Ok | 285 return ScanResult.Ok |
286 | 286 |
287 parser.print_help() | 287 parser.print_help() |
288 return ScanResult.Errors | 288 return ScanResult.Errors |
289 | 289 |
290 if __name__ == '__main__': | 290 if __name__ == '__main__': |
291 sys.exit(main()) | 291 sys.exit(main()) |
OLD | NEW |