diff options
author | 2024-08-27 19:02:29 +0000 | |
---|---|---|
committer | 2024-08-27 19:03:35 +0000 | |
commit | 82a6d1464d91a08a702435f5766f44a34672d24d (patch) | |
tree | be444bc55aa748e9ca5fbc66a41fb5e6ef9ce348 /android/androidmk.go | |
parent | bbcbe86fe316e2e7064bbb529bc6a25026d24f1e (diff) |
Remove 6 install related fields from ModuleBase.
Bug: 358425833
Test: Manually verified all the generated ninja and mk files and CI.
Change-Id: If2c3417781953a1eef2b07a241424157fd73abff
Diffstat (limited to 'android/androidmk.go')
-rw-r--r-- | android/androidmk.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android/androidmk.go b/android/androidmk.go index 0d196b6d9..68a6415b1 100644 --- a/android/androidmk.go +++ b/android/androidmk.go @@ -592,10 +592,10 @@ func (a *AndroidMkEntries) fillInEntries(ctx fillInEntriesContext, mod blueprint } if !base.InVendorRamdisk() { - a.AddPaths("LOCAL_FULL_INIT_RC", base.initRcPaths) + a.AddPaths("LOCAL_FULL_INIT_RC", info.InitRcPaths) } - if len(base.vintfFragmentsPaths) > 0 { - a.AddPaths("LOCAL_FULL_VINTF_FRAGMENTS", base.vintfFragmentsPaths) + if len(info.VintfFragmentsPaths) > 0 { + a.AddPaths("LOCAL_FULL_VINTF_FRAGMENTS", info.VintfFragmentsPaths) } a.SetBoolIfTrue("LOCAL_PROPRIETARY_MODULE", Bool(base.commonProperties.Proprietary)) if Bool(base.commonProperties.Vendor) || Bool(base.commonProperties.Soc_specific) { |