aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIris Yang <irisykyang@google.com>2020-09-08 22:37:40 +0800
committerIris Yang <irisykyang@google.com>2020-09-08 22:43:09 +0800
commit07814cbae4272abf2edd30e4dfd946d7dbbf05dc (patch)
tree103e9d94a153820a6f83644c911e485a64f06330
parentd5d7b04cfc953da1f9b326f599a610ed2dd14704 (diff)
downloadmarkupsafe-07814cbae4272abf2edd30e4dfd946d7dbbf05dc.tar.gz
Add build rule for markupsafe
Bug: 165704634 Test: make build pass Change-Id: I599fae0ac826d0ed457dfc15a205102489c99da5
-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,
+ },
+ },
+}