[LSC] Add LOCAL_LICENSE_KINDS to external/python/cffi am: 6ac53217be am: 032617dcaf am: 50d0b8b5db am: 3e013ad5e4

Original change: https://android-review.googlesource.com/c/platform/external/python/cffi/+/1588574

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I96b3b5a75d3f57d9e86b963d23b491a0b271b2b7
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..13f23dd
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,31 @@
+//
+// 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_python_cffi_license"],
+}
+
+// Added automatically by a large-scale-change
+// See: http://go/android-license-faq
+license {
+    name: "external_python_cffi_license",
+    visibility: [":__subpackages__"],
+    license_kinds: [
+        "SPDX-license-identifier-MIT",
+    ],
+    license_text: [
+        "LICENSE",
+    ],
+}
diff --git a/c/Android.bp b/c/Android.bp
index baced02..7ddc006 100644
--- a/c/Android.bp
+++ b/c/Android.bp
@@ -1,3 +1,12 @@
+package {
+    // See: http://go/android-license-faq
+    // A large-scale-change added 'default_applicable_licenses' to import
+    // all of the 'license_kinds' from "external_python_cffi_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-MIT
+    default_applicable_licenses: ["external_python_cffi_license"],
+}
+
 python_library {
     name: "py-cffi-backend",
     host_supported: true,
@@ -49,5 +58,3 @@
         ".libs_cffi_backend/libffi-45372312.so.6.0.4",
     ],
 }
-
-
diff --git a/cffi/Android.bp b/cffi/Android.bp
index e25787e..c600087 100644
--- a/cffi/Android.bp
+++ b/cffi/Android.bp
@@ -11,6 +11,15 @@
 // 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 {
+    // See: http://go/android-license-faq
+    // A large-scale-change added 'default_applicable_licenses' to import
+    // all of the 'license_kinds' from "external_python_cffi_license"
+    // to get the below license kinds:
+    //   SPDX-license-identifier-MIT
+    default_applicable_licenses: ["external_python_cffi_license"],
+}
+
 python_library {
     name: "py-cffi",
     host_supported: true,