Index: build/android/gyp/create_test_runner_script.py |
diff --git a/build/android/gyp/create_test_runner_script.py b/build/android/gyp/create_test_runner_script.py |
index 247bf20ad523e393a12b6b221dbba07faa0700e6..e72f364aad0cf49af953830187f5cbe8ef80acb3 100755 |
--- a/build/android/gyp/create_test_runner_script.py |
+++ b/build/android/gyp/create_test_runner_script.py |
@@ -57,7 +57,6 @@ |
group = parser.add_argument_group('Test runner path arguments.') |
group.add_argument('--output-directory') |
group.add_argument('--isolate-file-path') |
- group.add_argument('--support-apk') |
args, test_runner_args = parser.parse_known_args() |
def RelativizePathToScript(path): |
@@ -75,9 +74,6 @@ |
if args.isolate_file_path: |
test_runner_path_args['--isolate-file-path'] = RelativizePathToScript( |
args.isolate_file_path) |
- if args.support_apk: |
- test_runner_path_args['--support-apk'] = RelativizePathToScript( |
- args.support_apk) |
with open(args.script_output_path, 'w') as script: |
script.write(SCRIPT_TEMPLATE.format( |