summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authormsw <msw@chromium.org>2015-05-06 15:06:58 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-06 22:07:25 +0000
commitef55bcf4785c6b07da4017626bf6e0d8a62458b9 (patch)
tree2a903b68f9b7a4a773b26440e433607bd20fb3fc /testing
parent016d71e2e048f0578e2c53c3f741755173ef8cb2 (diff)
downloadchromium_src-ef55bcf4785c6b07da4017626bf6e0d8a62458b9.zip
chromium_src-ef55bcf4785c6b07da4017626bf6e0d8a62458b9.tar.gz
chromium_src-ef55bcf4785c6b07da4017626bf6e0d8a62458b9.tar.bz2
Support output_name for Android GN test targets.
BUG=482679 TEST=Android apk folders/names respect GN test output_name. R=brettw@chromium.org TBR=qsr@chromium.org Review URL: https://codereview.chromium.org/1127053003 Cr-Commit-Position: refs/heads/master@{#328624}
Diffstat (limited to 'testing')
-rw-r--r--testing/test.gni4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/test.gni b/testing/test.gni
index ec56f01..b4cdbed 100644
--- a/testing/test.gni
+++ b/testing/test.gni
@@ -117,8 +117,8 @@ template("test") {
unittests_dep = ":$library_name"
apk_name = main_target_name
if (defined(invoker.output_name)) {
- test_output_name = invoker.output_name
- unittests_binary = "lib${test_output_name}.so"
+ apk_name = invoker.output_name
+ unittests_binary = "lib${apk_name}.so"
}
deps = [
":$library_name",