[LSC] Add LOCAL_LICENSE_KINDS to external/libtextclassifier

Added SPDX-license-identifier-Apache-2.0 to:
  java/Android.bp
  java/tests/instrumentation/Android.bp
  jni/Android.bp
  native/Android.bp
  notification/Android.bp
  notification/tests/Android.bp

Added SPDX-license-identifier-Apache-2.0 legacy_unencumbered to:
  Android.bp
  abseil-cpp/Android.bp

Bug: 68860345
Bug: 151177513
Bug: 151953481

Test: m all

Exempt-From-Owner-Approval: janitorial work

Change-Id: Iffb38a0ae9d3ed38efd07b9c8b1f9b2742a2fb04
Merged-in: I90241274220cf1dbad3c5be6e13ba40a1ead8619
Merged-in: I2007c55451f3ad146ba8892f9e0eb4cae5a01750
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..5843fa6
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,44 @@
+//
+// Copyright (C) 2021 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package {
+    default_applicable_licenses: ["external_libtextclassifier_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_libtextclassifier_license",
+    visibility: [":__subpackages__"],
+    license_kinds: [
+        "SPDX-license-identifier-Apache-2.0",
+        "legacy_unencumbered",
+    ],
+    license_text: [
+        "NOTICE",
+    ],
+}
diff --git a/abseil-cpp/Android.bp b/abseil-cpp/Android.bp
index 8e3c3a4..659a825 100644
--- a/abseil-cpp/Android.bp
+++ b/abseil-cpp/Android.bp
@@ -1,3 +1,35 @@
+package {
+    default_applicable_licenses: [
+        "external_libtextclassifier_abseil-cpp_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_libtextclassifier_abseil-cpp_license",
+    visibility: [":__subpackages__"],
+    license_kinds: [
+        "SPDX-license-identifier-Apache-2.0",
+        "legacy_unencumbered",
+    ],
+    license_text: [
+        "LICENSE",
+    ],
+}
+
 cc_library_static {
     name: "libtextclassifier_abseil",
     export_include_dirs: ["."],
diff --git a/java/Android.bp b/java/Android.bp
index 03cfd81..655692b 100644
--- a/java/Android.bp
+++ b/java/Android.bp
@@ -15,6 +15,15 @@
 //
 
 // A standalone TextClassifierService app for testing.
+package {
+    // See: http://go/android-license-faq
+    // A large-scale-change added 'default_applicable_licenses' to import
+    // all of the 'license_kinds' from "external_libtextclassifier_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-Apache-2.0
+    default_applicable_licenses: ["external_libtextclassifier_license"],
+}
+
 android_app {
     name: "TextClassifierService",
     static_libs: ["TextClassifierServiceLib"],
diff --git a/java/tests/instrumentation/Android.bp b/java/tests/instrumentation/Android.bp
index 15ec570..7bcfec3 100644
--- a/java/tests/instrumentation/Android.bp
+++ b/java/tests/instrumentation/Android.bp
@@ -14,6 +14,15 @@
 // 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_libtextclassifier_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-Apache-2.0
+    default_applicable_licenses: ["external_libtextclassifier_license"],
+}
+
 android_test {
     name: "TextClassifierServiceTest",
 
@@ -53,4 +62,4 @@
     compile_multilib: "both",
 
     instrumentation_for: "TextClassifierService",
-}
\ No newline at end of file
+}
diff --git a/jni/Android.bp b/jni/Android.bp
index 569368e..d94821e 100644
--- a/jni/Android.bp
+++ b/jni/Android.bp
@@ -12,8 +12,17 @@
 // 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_libtextclassifier_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-Apache-2.0
+    default_applicable_licenses: ["external_libtextclassifier_license"],
+}
+
 java_library_static {
     name: "libtextclassifier-java",
     sdk_version: "core_current",
     srcs: ["**/*.java"],
-}
\ No newline at end of file
+}
diff --git a/native/Android.bp b/native/Android.bp
index 54a33d5..b7de246 100644
--- a/native/Android.bp
+++ b/native/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_libtextclassifier_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-Apache-2.0
+    default_applicable_licenses: ["external_libtextclassifier_license"],
+}
+
 cc_library_headers {
     name: "libtextclassifier_hash_headers",
     vendor_available: true,
diff --git a/notification/Android.bp b/notification/Android.bp
index 966941d..277985b 100644
--- a/notification/Android.bp
+++ b/notification/Android.bp
@@ -15,6 +15,15 @@
 //
 
 // A library that contains all java classes with the AndroidManifest.
+package {
+    // See: http://go/android-license-faq
+    // A large-scale-change added 'default_applicable_licenses' to import
+    // all of the 'license_kinds' from "external_libtextclassifier_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-Apache-2.0
+    default_applicable_licenses: ["external_libtextclassifier_license"],
+}
+
 android_library {
     name: "TextClassifierNotificationLib",
     static_libs: ["TextClassifierNotificationLibNoManifest"],
diff --git a/notification/tests/Android.bp b/notification/tests/Android.bp
index a7703cd..642495d 100644
--- a/notification/tests/Android.bp
+++ b/notification/tests/Android.bp
@@ -14,6 +14,15 @@
 // 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_libtextclassifier_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-Apache-2.0
+    default_applicable_licenses: ["external_libtextclassifier_license"],
+}
+
 android_test {
     name: "TextClassifierNotificationTests",
 
@@ -37,4 +46,4 @@
     ],
 
     instrumentation_for: "TextClassifierNotificationLib",
-}
\ No newline at end of file
+}