diff options
| author | Jiyong Park <jiyong@google.com> | 2019-04-23 18:00:10 +0900 |
|---|---|---|
| committer | Jiyong Park <jiyong@google.com> | 2019-04-23 18:03:16 +0900 |
| commit | a41f12a6fa05a030b426fe68dc0f5d6203a73c79 (patch) | |
| tree | 3cacf82a1dc971788c5c1ac076c934d7693e1cca /android | |
| parent | efcdd3b4bd676dcdffa3f926c8434c213726b749 (diff) | |
| download | build_soong-a41f12a6fa05a030b426fe68dc0f5d6203a73c79.tar.gz build_soong-a41f12a6fa05a030b426fe68dc0f5d6203a73c79.tar.bz2 build_soong-a41f12a6fa05a030b426fe68dc0f5d6203a73c79.zip | |
Prebuilt APEXes are recoreded in apexkeys.txt
apexkeys.txt now correctly lists prebuilt APEXes with keys specified as
PRESIGNED.
This change also fixes a bug that non-installable APEXes are listed in
the file.
Bug: 131130235
Test: m out/soong/apexkeys.txt and check that
com.android.apex.cts.shim.apex is listed there with PRESIGNED keys.
Change-Id: Ib6d391a82864714743a1cc59cd655bea917b5073
Diffstat (limited to 'android')
| -rw-r--r-- | android/prebuilt.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/prebuilt.go b/android/prebuilt.go index df25a89f..2556770d 100644 --- a/android/prebuilt.go +++ b/android/prebuilt.go @@ -74,6 +74,10 @@ func (p *Prebuilt) SingleSourcePath(ctx ModuleContext) Path { } } +func (p *Prebuilt) UsePrebuilt() bool { + return p.properties.UsePrebuilt +} + func InitPrebuiltModule(module PrebuiltInterface, srcs *[]string) { p := module.Prebuilt() module.AddProperties(&p.properties) |
