aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Desprez <jdesprez@google.com>2022-06-01 17:17:47 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-06-01 17:17:47 +0000
commit7d9374d0584d191586b55491ed82b2f9f4f51f8d (patch)
tree05a9c9635dc973c4dcae62be6f7ceb4c8a69f772
parent471577e5188f42ee37a52963542d36893ac47b4c (diff)
parentd86104c6af12cb8be59adf49bb9eea3ae1425290 (diff)
downloadpyserial-7d9374d0584d191586b55491ed82b2f9f4f51f8d.tar.gz
Add build files for pyserial am: 60af8d6614 am: bbb64237a7 am: 4f5f58f8d3 am: 2ff8f0ccc6 am: d86104c6af
Original change: https://android-review.googlesource.com/c/platform/external/python/pyserial/+/2112264 Change-Id: I81e92c758a7d0d7ebef8aaca4e40ec78eaa90ec9 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp29
-rw-r--r--serial/Android.bp33
2 files changed, 62 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..db508a2
--- /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_pyserial_license"],
+}
+
+license {
+ name: "external_python_pyserial_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-BSD",
+ ],
+ license_text: [
+ "LICENSE",
+ ],
+}
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",
+}