aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Desprez <jdesprez@google.com>2022-06-01 00:16:04 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-06-01 00:16:04 +0000
commit32247b84ab7500d2df8f786ae018b3c01abf4cce (patch)
tree0c1508c4d104d03b9a2568e5a3481562988a1ded
parentc00441d30ed12a460533b2b73b21af4e3eb492ac (diff)
parent5d1ef15144eeb66b7e20311cfb33132c6ca87de1 (diff)
downloadpyyaml-32247b84ab7500d2df8f786ae018b3c01abf4cce.tar.gz
Add build files for pyyaml am: 5d1ef15144
Original change: https://android-review.googlesource.com/c/platform/external/python/pyyaml/+/2111745 Change-Id: I1e9489382725da5d148e3522996682195fcb7334 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp29
-rw-r--r--lib/yaml/Android.bp33
2 files changed, 62 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..2196f73
--- /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_pyyaml_license"],
+}
+
+license {
+ name: "external_python_pyyaml_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-MIT",
+ ],
+ license_text: [
+ "LICENSE",
+ ],
+}
diff --git a/lib/yaml/Android.bp b/lib/yaml/Android.bp
new file mode 100644
index 0000000..9869355
--- /dev/null
+++ b/lib/yaml/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_pyyaml_license"],
+}
+
+python_library {
+ name: "pyyaml",
+ host_supported: true,
+ srcs: [
+ "*.py",
+ ],
+ version: {
+ py2: {
+ enabled: false,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+ pkg_path: "yaml",
+}