[LSC] Add LOCAL_LICENSE_KINDS to external/nanohttpd

Added SPDX-license-identifier-BSD to:
  Android.bp

Bug: 68860345
Bug: 151177513
Bug: 151953481

Test: m all

Exempt-From-Owner-Approval: janitorial work
Change-Id: I31b57b676cf425e410a8715eb8279f189edb77a0
diff --git a/Android.bp b/Android.bp
index 5ffcbc9..16b274c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -1,6 +1,29 @@
 // This module target includes just the single core file: NanoHTTPD.java, which
 // is enough for HTTP 1.1 support and nothing else.
 // ============================================================================
+package {
+    default_applicable_licenses: ["external_nanohttpd_license"],
+}
+
+// Added automatically by a large-scale-change
+//
+// 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_nanohttpd_license",
+    visibility: [":__subpackages__"],
+    license_kinds: [
+        "SPDX-license-identifier-BSD",
+    ],
+    license_text: [
+        "LICENSE.md",
+        "NOTICE",
+    ],
+}
+
 java_library {
     name: "libnanohttpd",
     srcs: ["core/src/main/**/*.java"],