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( 3-Clause)?( with advertising clause)?', | 44 '(New )?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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 return 1 | 279 return 1 |
280 elif args[0] == 'notice': | 280 elif args[0] == 'notice': |
281 print GenerateNoticeFile() | 281 print GenerateNoticeFile() |
282 return 0 | 282 return 0 |
283 | 283 |
284 parser.print_help() | 284 parser.print_help() |
285 return 1 | 285 return 1 |
286 | 286 |
287 if __name__ == '__main__': | 287 if __name__ == '__main__': |
288 sys.exit(main()) | 288 sys.exit(main()) |
OLD | NEW |