aboutsummaryrefslogtreecommitdiff
path: root/serial/Android.bp
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-14 13:46:18 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-14 13:46:18 +0000
commitb9d570bf862ef37eb1c6a72d9aae8fc69c8aeecf (patch)
tree05a9c9635dc973c4dcae62be6f7ceb4c8a69f772 /serial/Android.bp
parent2d58be716dbb2702c6f6be8007e8baa5e08115fb (diff)
parente4819095405163a12bf42aeb40c1411a85216566 (diff)
downloadpyserial-android13-mainline-sdkext-release.tar.gz
Change-Id: Ie9a383e3451f0e033ed581ee36e5bc7888763fc8
Diffstat (limited to 'serial/Android.bp')
-rw-r--r--serial/Android.bp33
1 files changed, 33 insertions, 0 deletions
diff --git a/serial/Android.bp b/serial/Android.bp
new file mode 100644
index 0000000..9242660
--- /dev/null
+++ b/serial/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_pyserial_license"],
+}
+
+python_library {
+ name: "pyserial",
+ host_supported: true,
+ srcs: [
+ "**/*.py",
+ ],
+ version: {
+ py2: {
+ enabled: false,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+ pkg_path: "serial",
+}