aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 04:57:23 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 04:57:23 +0000
commitc03ec77ceb2644c4d891510167b1fed39e44a4de (patch)
treef4af2a96ccf2dc3327974a26957d8c56e5540853
parent67ad23db5f15e66d815528b34726584ed433a06f (diff)
parentb28517b7e0f70f1a38543fda628cfef6ecb78192 (diff)
downloadmarkupsafe-android14-mainline-mediaprovider-release.tar.gz
Change-Id: I542959996e6478b7de3607ae919852b8adfc3658
-rw-r--r--Android.bp17
-rw-r--r--src/Android.bp12
2 files changed, 12 insertions, 17 deletions
diff --git a/Android.bp b/Android.bp
index 451b078..acbba46 100644
--- a/Android.bp
+++ b/Android.bp
@@ -14,20 +14,3 @@ license {
"LICENSE.rst",
],
}
-
-python_library {
- name: "py-markupsafe",
- host_supported: true,
- srcs: [
- "src/markupsafe/__init__.py",
- "src/markupsafe/_native.py",
- ],
- version: {
- py2: {
- enabled: true,
- },
- py3: {
- enabled: true,
- },
- },
-}
diff --git a/src/Android.bp b/src/Android.bp
new file mode 100644
index 0000000..e03c7ac
--- /dev/null
+++ b/src/Android.bp
@@ -0,0 +1,12 @@
+package {
+ default_applicable_licenses: ["external_python_markupsafe_license"],
+}
+
+python_library {
+ name: "py-markupsafe",
+ host_supported: true,
+ srcs: [
+ "markupsafe/__init__.py",
+ "markupsafe/_native.py",
+ ],
+}