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

Unified Diff: testing/test.gni

Issue 1680233002: Android Add _incremental targets for instrumentation tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing dep Created 4 years, 10 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/config/android/rules.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/test.gni
diff --git a/testing/test.gni b/testing/test.gni
index 1c2a927717f99bd565aaa2db1ed20d0919b2f263..f140fa3eb68db3fa88e263828093db8cf85e9c0f 100644
--- a/testing/test.gni
+++ b/testing/test.gni
@@ -85,6 +85,7 @@ template("test") {
}
test_runner_script_name = "${_test_name}__test_runner_script"
test_runner_script(test_runner_script_name) {
+ apk_target = ":$apk_name"
test_name = _test_name
test_type = "gtest"
test_suite = _test_name
@@ -95,6 +96,7 @@ template("test") {
incremental_test_runner_script_name =
"${_test_name}_incremental__test_runner_script"
test_runner_script(incremental_test_runner_script_name) {
+ apk_target = ":$apk_name"
test_name = "${_test_name}_incremental"
test_type = "gtest"
test_suite = _test_name
« no previous file with comments | « build/config/android/rules.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698