[LSC] Add LOCAL_LICENSE_KINDS to external/selinux
Added SPDX-license-identifier-Apache-2.0 to: libselinux/fuzzers/Android.bp Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-BSD SPDX-license-identifier-GPL SPDX-license-identifier-GPL-2.0 SPDX-license-identifier-LGPL SPDX-license-identifier-LGPL-2.1 SPDX-license-identifier-LGPL-3.0 SPDX-license-identifier-Zlib legacy_unencumbered to: Android.bp Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-GPL-2.0 legacy_unencumbered to: libselinux/Android.bp Added SPDX-license-identifier-BSD to: secilc/Android.bp Added SPDX-license-identifier-BSD SPDX-license-identifier-GPL SPDX-license-identifier-LGPL SPDX-license-identifier-LGPL-2.1 SPDX-license-identifier-LGPL-3.0 SPDX-license-identifier-Zlib legacy_unencumbered to: libsepol/Android.bp Added SPDX-license-identifier-GPL SPDX-license-identifier-GPL-2.0 SPDX-license-identifier-LGPL to: checkpolicy/Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: I3859438c836077d59ed424d04659213c3018f5fe
This commit is contained in:
parent
ec6a9c94b2
commit
57866d006b
6 changed files with 159 additions and 0 deletions
37
Android.bp
37
Android.bp
|
@ -1,3 +1,40 @@
|
|||
package {
|
||||
default_applicable_licenses: ["external_selinux_license"],
|
||||
}
|
||||
|
||||
// Added automatically by a large-scale-change that took the approach of
|
||||
// 'apply every license found to every target'. While this makes sure we respect
|
||||
// every license restriction, it may not be entirely correct.
|
||||
//
|
||||
// e.g. GPL in an MIT project might only apply to the contrib/ directory.
|
||||
//
|
||||
// Please consider splitting the single license below into multiple licenses,
|
||||
// taking care not to lose any license_kind information, and overriding the
|
||||
// default license using the 'licenses: [...]' property on targets as needed.
|
||||
//
|
||||
// For unused files, consider creating a 'filegroup' with "//visibility:private"
|
||||
// to attach the license to, and including a comment whether the files may be
|
||||
// used in the current project.
|
||||
// http://go/android-license-faq
|
||||
license {
|
||||
name: "external_selinux_license",
|
||||
visibility: [":__subpackages__"],
|
||||
license_kinds: [
|
||||
"SPDX-license-identifier-Apache-2.0",
|
||||
"SPDX-license-identifier-BSD",
|
||||
"SPDX-license-identifier-GPL",
|
||||
"SPDX-license-identifier-GPL-2.0",
|
||||
"SPDX-license-identifier-LGPL",
|
||||
"SPDX-license-identifier-LGPL-2.1",
|
||||
"SPDX-license-identifier-LGPL-3.0",
|
||||
"SPDX-license-identifier-Zlib",
|
||||
"legacy_unencumbered",
|
||||
],
|
||||
license_text: [
|
||||
"NOTICE",
|
||||
],
|
||||
}
|
||||
|
||||
subdirs = [
|
||||
"checkpolicy",
|
||||
"libselinux",
|
||||
|
|
|
@ -1,3 +1,34 @@
|
|||
package {
|
||||
default_applicable_licenses: ["external_selinux_checkpolicy_license"],
|
||||
}
|
||||
|
||||
// Added automatically by a large-scale-change that took the approach of
|
||||
// 'apply every license found to every target'. While this makes sure we respect
|
||||
// every license restriction, it may not be entirely correct.
|
||||
//
|
||||
// e.g. GPL in an MIT project might only apply to the contrib/ directory.
|
||||
//
|
||||
// Please consider splitting the single license below into multiple licenses,
|
||||
// taking care not to lose any license_kind information, and overriding the
|
||||
// default license using the 'licenses: [...]' property on targets as needed.
|
||||
//
|
||||
// For unused files, consider creating a 'filegroup' with "//visibility:private"
|
||||
// to attach the license to, and including a comment whether the files may be
|
||||
// used in the current project.
|
||||
// http://go/android-license-faq
|
||||
license {
|
||||
name: "external_selinux_checkpolicy_license",
|
||||
visibility: [":__subpackages__"],
|
||||
license_kinds: [
|
||||
"SPDX-license-identifier-GPL",
|
||||
"SPDX-license-identifier-GPL-2.0",
|
||||
"SPDX-license-identifier-LGPL",
|
||||
],
|
||||
license_text: [
|
||||
"COPYING",
|
||||
],
|
||||
}
|
||||
|
||||
common_CFLAGS = [
|
||||
"-Wall",
|
||||
"-Werror",
|
||||
|
|
|
@ -1,3 +1,34 @@
|
|||
package {
|
||||
default_applicable_licenses: ["external_selinux_libselinux_license"],
|
||||
}
|
||||
|
||||
// Added automatically by a large-scale-change that took the approach of
|
||||
// 'apply every license found to every target'. While this makes sure we respect
|
||||
// every license restriction, it may not be entirely correct.
|
||||
//
|
||||
// e.g. GPL in an MIT project might only apply to the contrib/ directory.
|
||||
//
|
||||
// Please consider splitting the single license below into multiple licenses,
|
||||
// taking care not to lose any license_kind information, and overriding the
|
||||
// default license using the 'licenses: [...]' property on targets as needed.
|
||||
//
|
||||
// For unused files, consider creating a 'filegroup' with "//visibility:private"
|
||||
// to attach the license to, and including a comment whether the files may be
|
||||
// used in the current project.
|
||||
// http://go/android-license-faq
|
||||
license {
|
||||
name: "external_selinux_libselinux_license",
|
||||
visibility: [":__subpackages__"],
|
||||
license_kinds: [
|
||||
"SPDX-license-identifier-Apache-2.0",
|
||||
"SPDX-license-identifier-GPL-2.0",
|
||||
"legacy_unencumbered",
|
||||
],
|
||||
license_text: [
|
||||
"LICENSE",
|
||||
],
|
||||
}
|
||||
|
||||
common_CFLAGS = [
|
||||
// Persistently stored patterns (pcre2) are architecture dependent.
|
||||
// In particular paterns built on amd64 can not run on devices with armv7
|
||||
|
|
|
@ -14,6 +14,14 @@
|
|||
// limitations under the License.
|
||||
//
|
||||
|
||||
package {
|
||||
// http://go/android-license-faq
|
||||
// A large-scale-change added 'default_applicable_licenses' to import
|
||||
// the below license kinds from "external_selinux_libselinux_license":
|
||||
// SPDX-license-identifier-Apache-2.0
|
||||
default_applicable_licenses: ["external_selinux_libselinux_license"],
|
||||
}
|
||||
|
||||
cc_defaults {
|
||||
name: "libselinux_fuzzer_defaults",
|
||||
cflags: [
|
||||
|
|
|
@ -1,3 +1,38 @@
|
|||
package {
|
||||
default_applicable_licenses: ["external_selinux_libsepol_license"],
|
||||
}
|
||||
|
||||
// Added automatically by a large-scale-change that took the approach of
|
||||
// 'apply every license found to every target'. While this makes sure we respect
|
||||
// every license restriction, it may not be entirely correct.
|
||||
//
|
||||
// e.g. GPL in an MIT project might only apply to the contrib/ directory.
|
||||
//
|
||||
// Please consider splitting the single license below into multiple licenses,
|
||||
// taking care not to lose any license_kind information, and overriding the
|
||||
// default license using the 'licenses: [...]' property on targets as needed.
|
||||
//
|
||||
// For unused files, consider creating a 'filegroup' with "//visibility:private"
|
||||
// to attach the license to, and including a comment whether the files may be
|
||||
// used in the current project.
|
||||
// http://go/android-license-faq
|
||||
license {
|
||||
name: "external_selinux_libsepol_license",
|
||||
visibility: [":__subpackages__"],
|
||||
license_kinds: [
|
||||
"SPDX-license-identifier-BSD",
|
||||
"SPDX-license-identifier-GPL",
|
||||
"SPDX-license-identifier-LGPL",
|
||||
"SPDX-license-identifier-LGPL-2.1",
|
||||
"SPDX-license-identifier-LGPL-3.0",
|
||||
"SPDX-license-identifier-Zlib",
|
||||
"legacy_unencumbered",
|
||||
],
|
||||
license_text: [
|
||||
"COPYING",
|
||||
],
|
||||
}
|
||||
|
||||
common_CFLAGS = [
|
||||
"-D_GNU_SOURCE",
|
||||
"-Wall",
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
package {
|
||||
default_applicable_licenses: ["external_selinux_secilc_license"],
|
||||
}
|
||||
|
||||
// Added automatically by a large-scale-change
|
||||
// http://go/android-license-faq
|
||||
license {
|
||||
name: "external_selinux_secilc_license",
|
||||
visibility: [":__subpackages__"],
|
||||
license_kinds: [
|
||||
"SPDX-license-identifier-BSD",
|
||||
],
|
||||
license_text: [
|
||||
"COPYING",
|
||||
],
|
||||
}
|
||||
|
||||
common_CFLAGS = [
|
||||
"-Wall",
|
||||
"-Werror",
|
||||
|
|
Loading…
Reference in a new issue