aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-03-07 00:26:59 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-03-07 00:26:59 +0000
commit9ea91292bf50cd79a9a520ca40bc4bc7ce96017b (patch)
treeef52d5dbd1fe1aac00168aefd8fd8eb354a858ff
parentb3e480f35d19f5a04bec59be1bb92f5f023b38ac (diff)
parent76ea9f5c8da24f4b2ffba9147af1ea5158252c2e (diff)
downloadpyfakefs-9ea91292bf50cd79a9a520ca40bc4bc7ce96017b.tar.gz
Add an Android.bp file am: 76ea9f5c8d
Change-Id: Ibb01278191c0f97c77305981e8250353a12d6c9c
-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",
+}