diff options
author | 2022-08-17 15:22:18 +0000 | |
---|---|---|
committer | 2022-08-17 15:22:18 +0000 | |
commit | 852d0c48593fb2a17d301d7274edac907e8e194f (patch) | |
tree | b47943204e5e9ca140d7074daa5677858b6d5425 /java/androidmk.go | |
parent | b2f584ba5855a016e66fc951d405655f74114a80 (diff) | |
parent | 0ac5a431a98d6f0fbc9434d4c7955981117f781f (diff) |
Merge "Move common test_options properties into the android package"
Diffstat (limited to 'java/androidmk.go')
-rw-r--r-- | java/androidmk.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/androidmk.go b/java/androidmk.go index 4cf5ee49e..75ac0e72d 100644 --- a/java/androidmk.go +++ b/java/androidmk.go @@ -167,9 +167,8 @@ func (j *Test) AndroidMkEntries() []android.AndroidMkEntries { entries.SetString("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", "true") } entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", j.testProperties.Test_mainline_modules...) - if Bool(j.testProperties.Test_options.Unit_test) { - entries.SetBool("LOCAL_IS_UNIT_TEST", true) - } + + j.testProperties.Test_options.CommonTestOptions.SetAndroidMkEntries(entries) }) return entriesList |