From 60af8d661405a091844f7869b485dab3c41847e4 Mon Sep 17 00:00:00 2001 From: Julien Desprez Date: Tue, 31 May 2022 10:41:29 -0700 Subject: Add build files for pyserial Test: presubmit Bug: 234458076 Change-Id: I729e28408f7f0eff6b60affd45d10f6616c56e9b --- Android.bp | 29 +++++++++++++++++++++++++++++ serial/Android.bp | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 Android.bp create mode 100644 serial/Android.bp 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", +} -- cgit v1.2.3 From e391f2917ab732da31375fe5b984470159af0d0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Kosi=C5=84ski?= Date: Tue, 20 Sep 2022 01:28:13 +0000 Subject: Remove Python enables identical to global defaults. Bug: 245854393 Test: presubmit Change-Id: I6808f94ec5f27f2e4b06a0d0f69e63aeaf32188a --- serial/Android.bp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/serial/Android.bp b/serial/Android.bp index 9242660..dc32fb3 100644 --- a/serial/Android.bp +++ b/serial/Android.bp @@ -21,13 +21,5 @@ python_library { srcs: [ "**/*.py", ], - version: { - py2: { - enabled: false, - }, - py3: { - enabled: true, - }, - }, pkg_path: "serial", } -- cgit v1.2.3