Add debug.keystore for use in scripts

Remove special handling of non absolute paths in run_on_as_app.py

Ensure that we authenticate when downloading from internal bucket

Change-Id: Ia7dbf24c8a171fcf062cd2ec2028589feb4386c4
diff --git a/tools/download_all_benchmark_dependencies.py b/tools/download_all_benchmark_dependencies.py
index 0bfed47..4c72e70 100755
--- a/tools/download_all_benchmark_dependencies.py
+++ b/tools/download_all_benchmark_dependencies.py
@@ -15,7 +15,8 @@
   gradle.RunGradle(BUILD_TARGETS)
   utils.DownloadFromGoogleCloudStorage(utils.OPENSOURCE_APPS_SHA_FILE)
   utils.DownloadFromGoogleCloudStorage(utils.ANDROID_SDK + '.tar.gz.sha1',
-                                       bucket='r8-deps-internal')
+                                       bucket='r8-deps-internal',
+                                       auth=True)
 
 if __name__ == '__main__':
   sys.exit(Main())