diff options
author | 2025-03-17 22:37:57 -0700 | |
---|---|---|
committer | 2025-03-17 22:37:57 -0700 | |
commit | 247c22ac8648faeb7129c6eb778eb51a06da5f10 (patch) | |
tree | 85a073daa25d6fcccd8e50926418c12ed84bbe01 | |
parent | 0598998141d3f11c0f48460cdf1fb97f7c4160ec (diff) | |
parent | 7c5fa1991740b9f1f18ba627b79ded845f849915 (diff) |
Merge "Add LOCAL_UNINSTALLABLE_MODULE: true to test_package AndroidMkEntries" into main
-rw-r--r-- | ci_tests/ci_test_package_zip.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ci_tests/ci_test_package_zip.go b/ci_tests/ci_test_package_zip.go index 95249aa10..d7aaa6686 100644 --- a/ci_tests/ci_test_package_zip.go +++ b/ci_tests/ci_test_package_zip.go @@ -284,6 +284,10 @@ func (p *testPackageZip) AndroidMkEntries() []android.AndroidMkEntries { android.AndroidMkEntries{ Class: "ETC", OutputFile: android.OptionalPathForPath(p.output), + ExtraEntries: []android.AndroidMkExtraEntriesFunc{ + func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) { + entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true) + }}, }, } } |