Merge commit '5662c43' into pyasn1-modules_0.2.1

Initial commit of pyasn1-modules 0.2.1 with history.

Added:
- Android.bp
- MODULE_LICENSE_BSD
- NOTICE
- METADATA

Bug: b/80314772
Test: Compiled acloud with pyasn1-modules and was able to import pyasn1-modules.
Change-Id: I3f15a09e02bb7e6f12d8cc12eb999248463b98e4
diff --git a/METADATA b/METADATA
new file mode 100644
index 0000000..a94392d
--- /dev/null
+++ b/METADATA
@@ -0,0 +1,16 @@
+name: "pyasn1-modules"
+description:
+    "A collection of ASN.1-based protocols modules."
+
+third_party {
+  url {
+    type: HOMEPAGE
+    value: "https://pypi.python.org/pypi/pyasn1-modules"
+  }
+  url {
+    type: GIT
+    value: "https://github.com/etingof/pyasn1-modules"
+  }
+  version: "0.2.1"
+  last_upgrade_date { year: 2018 month: 6 day: 13 }
+}
diff --git a/MODULE_LICENSE_BSD b/MODULE_LICENSE_BSD
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MODULE_LICENSE_BSD
diff --git a/NOTICE b/NOTICE
new file mode 120000
index 0000000..85de3d4
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1 @@
+LICENSE.txt
\ No newline at end of file
diff --git a/pyasn1_modules/Android.bp b/pyasn1_modules/Android.bp
new file mode 100644
index 0000000..19d3cf7
--- /dev/null
+++ b/pyasn1_modules/Android.bp
@@ -0,0 +1,32 @@
+// Copyright 2018 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.
+python_library {
+    name: "py-pyasn1-modules",
+    host_supported: true,
+    srcs: [
+        "*.py",
+    ],
+    version: {
+        py2: {
+            enabled: true,
+        },
+        py3: {
+            enabled: true,
+        },
+    },
+    libs: [
+        "py-pyasn1",
+    ],
+    pkg_path: "pyasn1-modules"
+}