Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(752)

Unified Diff: mojo/services/upload_service.py

Issue 921873003: Add x86/x64 upload support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/upload_service.py
diff --git a/mojo/services/upload_service.py b/mojo/services/upload_service.py
index ea528b3a39f7361fff98489773a6d997250c38a1..5b434d4c08d279859811011e9a27d455cc7b9be9 100755
--- a/mojo/services/upload_service.py
+++ b/mojo/services/upload_service.py
@@ -103,6 +103,14 @@ def main():
"--android-arm-binary-dir",
help="Path to the dir containing the android-arm service binary relative "
"to the repo root, e.g. out/android_Release")
+ parser.add_argument(
+ "--android-x86-binary-dir",
+ help="Path to the dir containing the android-x86 service binary relative "
+ "to the repo root, e.g. out/android_Release")
+ parser.add_argument(
+ "--android-x64-binary-dir",
+ help="Path to the dir containing the android-x64 service binary relative "
+ "to the repo root, e.g. out/android_Release")
parser.add_argument("service",
help="The service to be uploaded (one of %s)" % SERVICES)
@@ -127,6 +135,14 @@ def main():
upload_binary(args.service, args.android_arm_binary_dir,
"android-arm", args.dry_run)
+ if args.android_x86_binary_dir:
+ upload_binary(args.service, args.android_arm_binary_dir,
+ "android-x86", args.dry_run)
+
+ if args.android_x64_binary_dir:
+ upload_binary(args.service, args.android_arm_binary_dir,
+ "android-x64", args.dry_run)
+
if not args.dry_run:
print "Uploaded artifacts for version %s" % (version, )
else:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698