Merge commit '08357b2' into google-api-python-client_v1.5.1

Inital commit of google-api-python-client 1.5.1 with history.

Added:
- Android.bp
- MODULE_LICENSE_APACHE2
- NOTICE
- METADATA
- README.android

Bug: b/80314772
Test: 1.make acloud with "py-google-api-python-client" in libs dependency and was able to import apiclient
      2.able to run acloud create/delete command.

Change-Id: Ibb37290d43009c5084764c2539572653582ba1bd
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..63fd14c
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,36 @@
+// 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-google-api-python-client",
+    host_supported: true,
+    srcs: [
+        "googleapiclient/*.py",
+        "googleapiclient/discovery_cache/*.py",
+        "apiclient/*.py",
+    ],
+    version: {
+        py2: {
+            enabled: true,
+        },
+        py3: {
+            enabled: true,
+        },
+    },
+    libs: [
+        "py-httplib2",
+        "py-oauth2client",
+        "py-six",
+        "py-uritemplate",
+    ],
+}
diff --git a/METADATA b/METADATA
new file mode 100644
index 0000000..2b18331
--- /dev/null
+++ b/METADATA
@@ -0,0 +1,15 @@
+name : "google-api-python-client"
+description:
+    "This is the Python client library for Google's discovery based APIs."
+third_party {
+  url {
+    type: HOMEPAGE
+    value: "https://pypi.org/project/google-api-python-client/"
+  }
+  url {
+    type: GIT
+    value: "https://github.com/google/google-api-python-client"
+  }
+  version: "1.5.1"
+  last_upgrade_date { year: 2018 month: 6 day: 1 }
+}
diff --git a/MODULE_LICENSE_APACHE2 b/MODULE_LICENSE_APACHE2
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MODULE_LICENSE_APACHE2
diff --git a/NOTICE b/NOTICE
new file mode 120000
index 0000000..7a694c9
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1 @@
+LICENSE
\ No newline at end of file