Upgrade python/httplib2 to v0.12.1

Test: acloud still runs
Exempt-From-Owner-Approval: owner don't have +2 permission
Change-Id: If22200d2393e0fd10ab49106675984d46e5fb94f
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..05d69ac
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,50 @@
+// 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.
+
+filegroup {
+    // "cacerts.txt" are identical save for the fact that py3 cacerts.txt has
+    // a newline at the end while py2 cacerts.txt doesn't.
+    name: "cacert_data",
+    srcs: ["python3/httplib2/cacerts.txt"],
+    path: "python3/httplib2",
+}
+
+filegroup {
+    name: "py2_httplib2_srcs",
+    srcs: ["python2/httplib2/*.py"],
+    path: "python2/httplib2",
+}
+
+filegroup {
+    name: "py3_httplib2_srcs",
+    srcs: ["python3/httplib2/*.py"],
+    path: "python3/httplib2",
+}
+
+python_library {
+    name: "py-httplib2",
+    host_supported: true,
+    data: [":cacert_data"],
+    pkg_path: "httplib2",
+    version: {
+          py2: {
+              enabled: true,
+              srcs: [":py2_httplib2_srcs"],
+          },
+          py3: {
+              enabled: true,
+              srcs: [":py3_httplib2_srcs"],
+          },
+    },
+}
diff --git a/METADATA b/METADATA
new file mode 100644
index 0000000..d8f0f8a
--- /dev/null
+++ b/METADATA
@@ -0,0 +1,18 @@
+name: "httplib2"
+description: "httplib2 is a comprehensive HTTP client library, httplib2.py supports many features left out of other HTTP libraries."
+third_party {
+  url {
+    type: HOMEPAGE
+    value: "https://github.com/httplib2/httplib2"
+  }
+  url {
+    type: GIT
+    value: "https://github.com/httplib2/httplib2.git"
+  }
+  version: "v0.12.1"
+  last_upgrade_date {
+    year: 2019
+    month: 2
+    day: 21
+  }
+}
diff --git a/MODULE_LICENSE_MIT b/MODULE_LICENSE_MIT
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MODULE_LICENSE_MIT
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
diff --git a/OWNERS b/OWNERS
new file mode 100644
index 0000000..e6fbf8d
--- /dev/null
+++ b/OWNERS
@@ -0,0 +1,5 @@
+# Default owners are top 3 or more active developers of the past 1 or 2 years
+# or people with more than 10 commits last year.
+# Please update this list if you find better owner candidates.
+herbertxue@google.com
+yim@google.com