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

Unified Diff: build/config/android/internal_rules.gni

Issue 2521513007: Add support for a custom test_runner.py script. (Closed)
Patch Set: test_runner_script -> android_test_runner_script Created 4 years, 1 month 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/config/android/internal_rules.gni
diff --git a/build/config/android/internal_rules.gni b/build/config/android/internal_rules.gni
index ee151fbf81360c9175970e7b05ee159ffe40a1bc..3121ee986856da5a63143c0d71770aa16eabe74c 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -591,6 +591,13 @@ template("test_runner_script") {
"--script-output-path",
rebase_path(generated_script, root_build_dir),
]
+ if (defined(android_test_runner_script)) {
+ args += [
+ "--test-runner-path",
+ android_test_runner_script,
+ ]
+ }
+
args += test_runner_args
}
}
« 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