Add tar.gz version of pip, setuptools

(Some) builders are running virtualenv 1.7, which is the most
up-to-date version of virtualenv on Ubuntu Precise (Goobuntus are
running virtualenv 1.11).

This version of virtualenv does not work with wheels, so it does not
detect the version of pip that we ship (8.1.2).  Furthermore, the
version of pip that virtualenv defaults to (1.1) does not support
wheels either, so it cannot install any of the dependency packages
that we ship.

This version of virtualenv also ships with a woefully out of date copy
of setuptools (0.9 something), which provides an out of date version
of pkg_resources.  The consequence of this is that gcloud, which uses
pkg_resources to find its own distribution version, fails.

The easiest workaround is to ship a tar.gz version of pip 8.1.2, which
virtualenv 1.7 does detect and install.  With an up to date version of
pip installed, we can install the rest of the necessary wheels.

We also ship a tar.gz version of an updated setuptools.  virtualenv
does not detect and install this updated setuptools, but we install
this using pip (added in a separate commit).

Note that it should be possible to install setuptools as a wheel,
however I suspect there are more fun things required to get that
working reliably and is probably not worth it.  Therefore, we ship
portable tar.gz of setuptools and pip, which should enable us to
portably get a virtualenv up and running with the basic dependencies
we need, and pip+setuptools takes care of everything else.

BUG=chromium:674687
TEST=Debug on builder

Change-Id: I1a4c48fcb81d2964e0007a2be1bf0c70e34c7995
Reviewed-on: https://chromium-review.googlesource.com/421101
Commit-Ready: Allen Li <ayatane@chromium.org>
Tested-by: Allen Li <ayatane@chromium.org>
Reviewed-by: David Riley <davidriley@chromium.org>
diff --git a/pip_packages/pip-8.1.2.tar.gz b/pip_packages/pip-8.1.2.tar.gz
new file mode 100644
index 0000000..e7a1a3c
--- /dev/null
+++ b/pip_packages/pip-8.1.2.tar.gz
Binary files differ
diff --git a/pip_packages/setuptools-28.2.0.tar.gz b/pip_packages/setuptools-28.2.0.tar.gz
new file mode 100644
index 0000000..9d8c3ce
--- /dev/null
+++ b/pip_packages/setuptools-28.2.0.tar.gz
Binary files differ