aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-03-07 00:46:36 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-03-07 00:46:36 +0000
commit8877b31f914bda41c7a3f20ca48ea927d68e2034 (patch)
treeef52d5dbd1fe1aac00168aefd8fd8eb354a858ff
parent79f1e8a2f82ff9a39422105c2606b08936d1880f (diff)
parent9ea91292bf50cd79a9a520ca40bc4bc7ce96017b (diff)
downloadpyfakefs-8877b31f914bda41c7a3f20ca48ea927d68e2034.tar.gz
Add an Android.bp file am: 76ea9f5c8d am: 9ea91292bf
Change-Id: Ia0b5f67d9845f8b04204511b6abc64d696ec2c4f
-rw-r--r--pyfakefs/Android.bp30
1 files changed, 30 insertions, 0 deletions
diff --git a/pyfakefs/Android.bp b/pyfakefs/Android.bp
new file mode 100644
index 0000000..7fc6b9a
--- /dev/null
+++ b/pyfakefs/Android.bp
@@ -0,0 +1,30 @@
+// Copyright (C) 2020 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.
+
+python_library {
+ name: "pyfakefs",
+ host_supported: true,
+ srcs: [
+ "*.py",
+ ],
+ version: {
+ py2: {
+ enabled: true,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+ pkg_path: "pyfakefs",
+}