aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2021-02-17 19:43:55 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-02-17 19:43:55 +0000
commit0c2dcb90e1849c1e86797f73c40b77af4dc5bf29 (patch)
tree3fbc4b02a55e8acc7772303374d76be2800c4088
parentcfb59c0d52dea33b9e053b3de49754b697b2c275 (diff)
parent7982af0b533db04fef01ee4aca294649f8ba1ee2 (diff)
downloadeigen-0c2dcb90e1849c1e86797f73c40b77af4dc5bf29.tar.gz
Merge "[LSC] Add LOCAL_LICENSE_KINDS to external/eigen" am: afc16bd8c3 am: a3ec61e3a2 am: 7982af0b53
Original change: https://android-review.googlesource.com/c/platform/external/eigen/+/1588857 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ib8f1658961a627cd3f8e4be35ea841d1c28cd432
-rw-r--r--Android.bp52
-rw-r--r--blas/Android.bp9
2 files changed, 61 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index d7717e412..23c3280d0 100644
--- a/Android.bp
+++ b/Android.bp
@@ -12,6 +12,58 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+package {
+ default_applicable_licenses: ["external_eigen_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.
+//
+// large-scale-change included anything that looked like it might be a license
+// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
+//
+// Please consider removing redundant or irrelevant files from 'license_text:'.
+// See: http://go/android-license-faq
+license {
+ name: "external_eigen_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-Apache-2.0",
+ "SPDX-license-identifier-BSD",
+ "SPDX-license-identifier-BSL-1.0",
+ "SPDX-license-identifier-GPL",
+ "SPDX-license-identifier-GPL-2.0",
+ "SPDX-license-identifier-GPL-3.0",
+ "SPDX-license-identifier-LGPL",
+ "SPDX-license-identifier-LGPL-2.1",
+ "SPDX-license-identifier-LGPL-3.0",
+ "SPDX-license-identifier-MIT",
+ "SPDX-license-identifier-MPL",
+ "SPDX-license-identifier-MPL-2.0",
+ "legacy_unencumbered",
+ ],
+ license_text: [
+ "COPYING.BSD",
+ "COPYING.GPL",
+ "COPYING.LGPL",
+ "COPYING.MINPACK",
+ "COPYING.MPL2",
+ "COPYING.README",
+ "NOTICE",
+ ],
+}
+
cc_library_headers {
name: "libeigen",
diff --git a/blas/Android.bp b/blas/Android.bp
index 4d72be212..b8a3bf47f 100644
--- a/blas/Android.bp
+++ b/blas/Android.bp
@@ -12,6 +12,15 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+package {
+ // See: http://go/android-license-faq
+ // A large-scale-change added 'default_applicable_licenses' to import
+ // all of the 'license_kinds' from "external_eigen_license"
+ // to get the below license kinds:
+ // SPDX-license-identifier-MPL-2.0
+ default_applicable_licenses: ["external_eigen_license"],
+}
+
cc_defaults {
name: "eigen-defaults",
srcs: [