| 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 0b127e7f3c6bcf0ad012ff775f4730ce42c073e1..be15dfd1eaaf8a6ea96306dd59f4f6f0e6684de9 100755
|
| --- a/build/android/gyp/create_test_runner_script.py
|
| +++ b/build/android/gyp/create_test_runner_script.py
|
| @@ -60,6 +60,7 @@ def main(args):
|
| group.add_argument('--additional-apk-list')
|
| group.add_argument('--apk-under-test')
|
| group.add_argument('--apk-under-test-incremental-install-script')
|
| + group.add_argument('--executable-dist-dir')
|
| group.add_argument('--isolate-file-path')
|
| group.add_argument('--output-directory')
|
| group.add_argument('--test-apk')
|
| @@ -92,6 +93,10 @@ def main(args):
|
| ('--apk-under-test-incremental-install-script',
|
| RelativizePathToScript(
|
| args.apk_under_test_incremental_install_script)))
|
| + if args.executable_dist_dir:
|
| + test_runner_path_args.append(
|
| + ('--executable-dist-dir',
|
| + RelativizePathToScript(args.executable_dist_dir)))
|
| if args.isolate_file_path:
|
| test_runner_path_args.append(
|
| ('--isolate-file-path', RelativizePathToScript(args.isolate_file_path)))
|
|
|