aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIRIS YANG <irisykyang@google.com>2020-09-10 02:51:08 +0000
committerIRIS YANG <irisykyang@google.com>2020-09-10 02:59:18 +0000
commitaaf3e8a02736112a36775113e781f32ca0720259 (patch)
tree103e9d94a153820a6f83644c911e485a64f06330
parent815cad87ae7b2d10f5e5642972cc9e7c1c95b257 (diff)
downloadmarkupsafe-aaf3e8a02736112a36775113e781f32ca0720259.tar.gz
Add build rule back for markupsafe.
The markupsafe lib wasn't in the master-without-vendor branch due to there is merge conflict master -> master-without-vendor that has not been resolved. But markupsafe is merged in master-without-vendor branch now. ag/12545538. So add the build rule back. For the details of merging conflict: b/167204216 Change-Id: Ice72543e236a23a14c458f0dff211db7f31d12f1
-rw-r--r--Android.bp16
1 files changed, 16 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..9d3fe9f
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,16 @@
+python_library {
+ name: "py-markupsafe",
+ host_supported: true,
+ srcs: [
+ "src/markupsafe/__init__.py",
+ "src/markupsafe/_native.py",
+ ],
+ version: {
+ py2: {
+ enabled: true,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+}