From f5531d2ed63e9c580140434f11a752a079cc6b8a Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Mon, 16 Jul 2018 17:21:19 -0700 Subject: [PATCH] Add missing properties to android_test These are in the AndroidTest struct, and being exported by the AndroidMk functions, but aren't in the list given to blueprint. Test: add test_suites to an android_test, check Android-*.mk Change-Id: I1e46638755cbb579f28ed14638baad43fde5cb96 --- java/app.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java/app.go b/java/app.go index 7ad525d19..9e7530ebc 100644 --- a/java/app.go +++ b/java/app.go @@ -238,7 +238,8 @@ func AndroidTestFactory() android.Module { &module.Module.protoProperties, &module.aaptProperties, &module.appProperties, - &module.appTestProperties) + &module.appTestProperties, + &module.testProperties) android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)