aboutsummaryrefslogtreecommitdiff
path: root/timeout_decorator/Android.bp
diff options
context:
space:
mode:
authorFrank Feng <frankfeng@google.com>2022-06-09 12:01:41 -0700
committerFrank Feng <frankfeng@google.com>2022-06-09 12:01:41 -0700
commite2a8f4c150d0875bd9c3c3b27e474da8e6997778 (patch)
tree28f4b594992c67f3ecc26dff01540b94db8beaa3 /timeout_decorator/Android.bp
parentffe302e4231ab8882d9a8ea68c86ed2a04a28fd8 (diff)
parent12b00c2d63b82a90301f2a631e8ad0192c314783 (diff)
downloadtimeout-decorator-e2a8f4c150d0875bd9c3c3b27e474da8e6997778.tar.gz
Merge remote-tracking branch 'goog/mirror-aosp-master' into bp_timeoutandroid13-dev
Bug: 235099911 Test: TH Change-Id: I82bfe25cf9e83c7e099b69273fdac887cc89269d
Diffstat (limited to 'timeout_decorator/Android.bp')
-rw-r--r--timeout_decorator/Android.bp33
1 files changed, 33 insertions, 0 deletions
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",
+}