You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.6 KiB
Python
113 lines
2.6 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright 2024 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# These licenses are used to verify that code imported to Android complies with
|
|
# their licensing requirements. Do not add entries to this list without approval.
|
|
# Any licenses added should be a valid SPDX Identifier. For the full list of
|
|
# identifiers; see https://spdx.org/licenses/.
|
|
# Licenses below are grouped by restrictiveness level and then alphabetically.
|
|
ALLOWED_SPDX_LICENSES = frozenset([
|
|
# other_ignorable.
|
|
"LZMA-SDK-9.22",
|
|
# unencumbered.
|
|
"CC0-1.0",
|
|
"Unlicense",
|
|
"blessing",
|
|
# permissive.
|
|
"GPL-2.0-with-autoconf-exception",
|
|
"GPL-2.0-with-classpath-exception",
|
|
"GPL-3.0-with-autoconf-exception",
|
|
"MIT-0",
|
|
# notice.
|
|
"AML",
|
|
"Apache-2.0",
|
|
"Artistic-2.0",
|
|
"BSD-2-Clause",
|
|
"BSD-2-Clause-FreeBSD",
|
|
"BSD-3-Clause",
|
|
"BSD-3-Clause-Attribution",
|
|
"BSD-4-Clause",
|
|
"BSD-4-Clause-UC",
|
|
"BSD-4.3TAHOE",
|
|
"BSD-Source-Code",
|
|
"BSL-1.0",
|
|
"Beerware",
|
|
"CC-BY-3.0",
|
|
"CC-BY-4.0",
|
|
"FTL",
|
|
"HPND",
|
|
"HPND-sell-variant",
|
|
"ICU",
|
|
"IJG",
|
|
"ISC",
|
|
"JSON",
|
|
"Libpng",
|
|
"ISC",
|
|
"MIT",
|
|
"MIT-Modern-Variant",
|
|
"MS-PL",
|
|
"NAIST-2003",
|
|
"NCSA",
|
|
"OFL-1.1",
|
|
"OpenSSL",
|
|
"SGI-B-2.0",
|
|
"SunPro",
|
|
"Unicode-3.0",
|
|
"Unicode-DFS-2015",
|
|
"Unicode-DFS-2016",
|
|
"X11",
|
|
"Zlib",
|
|
"libtiff",
|
|
# reciprocal. TODO(b/385020146): Only allow for opensource projects.
|
|
"APSL-2.0",
|
|
"MPL-1.1",
|
|
"MPL-2.0",
|
|
])
|
|
|
|
# These are licenses that are not in the SPDX license list, but are identified
|
|
# by the license classifier.
|
|
EXTENDED_LICENSE_CLASSIFIERS = frozenset([
|
|
# unencumbered.
|
|
"AhemFont",
|
|
"Android-SDK",
|
|
"LZMA",
|
|
"SPL-SQRT-FLOOR",
|
|
"public-domain-md5",
|
|
# permissive.
|
|
"LicenseRef-AMSFonts-2.2",
|
|
"test_fonts",
|
|
# notice.
|
|
"Apache-with-LLVM-Exception",
|
|
"Apache-with-Runtime-Exception",
|
|
"BSD-2-Clause-Flex",
|
|
"BSD-3-Clause-OpenMPI",
|
|
"BSD-4-Clause-Wasabi",
|
|
"Bitstream",
|
|
"CERN",
|
|
"Caffe",
|
|
"Entenssa",
|
|
"FFT2D",
|
|
"GIF-Encoder",
|
|
"GNU-All-permissive-Copying-License",
|
|
"IBM-DHCP",
|
|
"JsonCPP",
|
|
"Khronos",
|
|
"Libpng-2.0",
|
|
"LicenseRef-OpenGLUT",
|
|
"LicenseRef-base64",
|
|
"LicenseRef-takuya-ooura",
|
|
"Punycode",
|
|
"SSLeay",
|
|
"WebM-Project-Patent",
|
|
"X11-Lucent",
|
|
"cURL",
|
|
"dso",
|
|
"getopt",
|
|
"pffft",
|
|
"zxing",
|
|
])
|
|
|
|
ALLOWED_LICENSES = ALLOWED_SPDX_LICENSES | EXTENDED_LICENSE_CLASSIFIERS
|