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

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

Issue 2521513007: Add support for a custom test_runner.py script. (Closed)
Patch Set: 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..5eaa1f6a39bb9fdabb5653cf3981a8801cde536e 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(test_runner_script)) {
jbudorick 2016/11/23 17:09:31 I think this would have to be invoker.test_runner_
ehmaldonado_chromium 2016/11/23 17:19:32 I was planning to have this be a variable in //bui
kjellander_chromium 2016/11/23 20:05:40 If we can avoid forcing downstream projects like V
+ args += [
+ "--test-runner-path",
+ 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