aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2021-02-12 16:38:58 -0800
committerBob Badour <bbadour@google.com>2021-02-12 16:38:58 -0800
commita29f0590a4fce258a69ee39a944150a02e5c8e16 (patch)
tree6990be9557cd0b2a01c3c4c3c604dd2ae257f27a /Android.bp
parent6b550817033a4906a1d304d49a23c7b37a2d8a40 (diff)
downloadgoogle-breakpad-a29f0590a4fce258a69ee39a944150a02e5c8e16.tar.gz
[LSC] Add LOCAL_LICENSE_KINDS to external/google-breakpadandroid-s-preview-1
Added SPDX-license-identifier-APSL-2.0 SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-Artistic SPDX-license-identifier-BSD SPDX-license-identifier-FSFAP SPDX-license-identifier-ISC SPDX-license-identifier-MIT SPDX-license-identifier-Unicode-DFS legacy_notice legacy_unencumbered to: Android.bp Added SPDX-license-identifier-BSD to: android/google_breakpad/Android.mk android/sample_app/jni/Android.mk Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: I748afbce03f889c37576012387694a670b267eac
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp38
1 files changed, 38 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index d76c9e22..e6fd2cc7 100644
--- a/Android.bp
+++ b/Android.bp
@@ -14,6 +14,44 @@
// Static library.
// =================================================
+package {
+ default_applicable_licenses: ["external_google-breakpad_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.
+// See: http://go/android-license-faq
+license {
+ name: "external_google-breakpad_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-APSL-2.0",
+ "SPDX-license-identifier-Apache-2.0",
+ "SPDX-license-identifier-Artistic",
+ "SPDX-license-identifier-BSD",
+ "SPDX-license-identifier-FSFAP",
+ "SPDX-license-identifier-ISC",
+ "SPDX-license-identifier-MIT",
+ "SPDX-license-identifier-Unicode-DFS",
+ "legacy_notice",
+ "legacy_unencumbered",
+ ],
+ license_text: [
+ "LICENSE",
+ ],
+}
+
cc_library_static {
name: "breakpad_client",
host_supported: true,