aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Desprez <jdesprez@google.com>2022-06-01 01:50:25 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-06-01 01:50:25 +0000
commit62edb1aec20c32e62ec6d92caabb7b8e6d35fbf3 (patch)
tree28f4b594992c67f3ecc26dff01540b94db8beaa3
parentc2e0692fdf9579d1de596889229c60f9b3aa0128 (diff)
parent46a87d987aab76c91649f3b30f8949c6105b2ded (diff)
downloadtimeout-decorator-62edb1aec20c32e62ec6d92caabb7b8e6d35fbf3.tar.gz
Add build files for timeout_decorator am: 12b00c2d63 am: f0db9c8704 am: 3723f8f307 am: b357c5325c am: 46a87d987a
Original change: https://android-review.googlesource.com/c/platform/external/python/timeout-decorator/+/2112185 Change-Id: I43d78e143172ebb0f46346ede844dd7c73f6693b Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp29
-rw-r--r--timeout_decorator/Android.bp33
2 files changed, 62 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..535ec1d
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,29 @@
+//
+// Copyright (C) 2022 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.
+
+package {
+ default_applicable_licenses: ["external_python_timeout_decorator_license"],
+}
+
+license {
+ name: "external_python_timeout_decorator_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-MIT",
+ ],
+ license_text: [
+ "LICENSE",
+ ],
+}
diff --git a/timeout_decorator/Android.bp b/timeout_decorator/Android.bp
new file mode 100644
index 0000000..b70e430
--- /dev/null
+++ b/timeout_decorator/Android.bp
@@ -0,0 +1,33 @@
+// Copyright 2022 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.
+package {
+ default_applicable_licenses: ["external_python_timeout_decorator_license"],
+}
+
+python_library {
+ name: "py-timeout-decorator",
+ host_supported: true,
+ srcs: [
+ "timeout_decorator.py",
+ ],
+ version: {
+ py2: {
+ enabled: false,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+ pkg_path: "timeout_decorator",
+}