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

Unified Diff: build/android/gyp/create_test_runner_script.py

Issue 1891863002: 🐘 Make --executable-dist-dir a path arg for android test wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: 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)))
« 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