| 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:
|
|
|