From 20e841cebca97d9ddff2a6035037154b5d9df738 Mon Sep 17 00:00:00 2001 From: Julien Desprez Date: Tue, 31 May 2022 10:33:35 -0700 Subject: Add build files for typing_extensions Test: presubmit Bug: 234458076 Change-Id: I310b83b9d87fe151a1fd37c1f175518b8c6484d5 --- Android.bp | 29 +++++++++++++++++++++++++++++ typing_extensions/Android.bp | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 Android.bp create mode 100644 typing_extensions/Android.bp diff --git a/Android.bp b/Android.bp new file mode 100644 index 0000000..e91fcf1 --- /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_typing_license"], +} + +license { + name: "external_python_typing_license", + visibility: [":__subpackages__"], + license_kinds: [ + "SPDX-license-identifier-MIT", + ], + license_text: [ + "LICENSE", + ], +} diff --git a/typing_extensions/Android.bp b/typing_extensions/Android.bp new file mode 100644 index 0000000..0f53b0c --- /dev/null +++ b/typing_extensions/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_typing_license"], +} + +python_library { + name: "typing_extensions", + host_supported: true, + srcs: [ + "src/typing_extensions.py", + ], + version: { + py2: { + enabled: false, + }, + py3: { + enabled: true, + }, + }, + pkg_path: "typing_extensions", +} -- cgit v1.2.3