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

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

Issue 1208483004: Make instrumentation test dependency on a support APK explicit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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 | « build/android/test_runner.py ('k') | build/config/android/rules.gni » ('j') | 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 a8da93af28e09172a6b459d1559a9ef9131f46ed..17f7ef3db78a0c32f70470881f2bf83700f4619b 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -1546,6 +1546,12 @@ template("test_runner_script") {
"--test-apk",
invoker.test_apk,
]
+ if (defined(invoker.support_apk_path)) {
+ test_runner_args += [
+ "--support-apk",
+ invoker.support_apk_path,
cjhopman 2015/06/30 23:07:13 invoker.support_apk_path should be relative to the
dgn 2015/07/01 09:56:28 OK, I had done it on the caller's side: https://ch
+ ]
+ }
} else {
assert(false, "Invalid test type: $_test_type.")
}
« no previous file with comments | « build/android/test_runner.py ('k') | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698