summaryrefslogtreecommitdiff
path: root/funcsigs
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2018-08-14 12:48:35 -0700
committerIgor Murashkin <iam@google.com>2018-08-14 12:52:02 -0700
commit5d278fdc0aca6e137221b44e66305d6747b8b9c7 (patch)
tree93c86b4bf506379a03191de729ff286965577bca /funcsigs
parent1277061b73a1c286ff193a3cf3d34ec49cb24c8d (diff)
downloadfuncsigs-5d278fdc0aca6e137221b44e66305d6747b8b9c7.tar.gz
android: Add build `py-funcsigs` and unit testsmaster-cuttlefish-testing-release
Needed as a dependency for pytest. Bug: 112283442
Diffstat (limited to 'funcsigs')
-rw-r--r--funcsigs/Android.bp30
1 files changed, 30 insertions, 0 deletions
diff --git a/funcsigs/Android.bp b/funcsigs/Android.bp
new file mode 100644
index 0000000..acee033
--- /dev/null
+++ b/funcsigs/Android.bp
@@ -0,0 +1,30 @@
+// Copyright 2018 Google Inc. All rights reserved.
+//
+// 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: "py-funcsigs",
+ host_supported: true,
+ srcs: [
+ "*.py",
+ ],
+ version: {
+ py2: {
+ enabled: true,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+ pkg_path: "funcsigs",
+}