summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2021-02-21 19:04:37 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-02-21 19:04:37 +0000
commit3e013ad5e4325c9a301ddde47e997bfd797167cd (patch)
treeee2d0182d9611b11c7d1e2229bce499e812480f3
parent1158cea581a32d9389fd34e3e93444b45aee8ebf (diff)
parent50d0b8b5dbe4252c5c2a669bf157a051d176ef8e (diff)
downloadcffi-3e013ad5e4325c9a301ddde47e997bfd797167cd.tar.gz
Original change: https://android-review.googlesource.com/c/platform/external/python/cffi/+/1588574 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ia05b13eca60db733747a7a8203bb92c29b905c52
-rw-r--r--Android.bp31
-rw-r--r--c/Android.bp11
-rw-r--r--cffi/Android.bp9
3 files changed, 49 insertions, 2 deletions
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 @@ filegroup {
".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,