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 |
} |
} |