diff --git a/android/androidmk.go b/android/androidmk.go index b66fd1836..4893bf4ee 100644 --- a/android/androidmk.go +++ b/android/androidmk.go @@ -230,9 +230,6 @@ func (a *AndroidMkEntries) fillInEntries(config Config, bpPath string, mod bluep } a.SetBoolIfTrue("LOCAL_ODM_MODULE", Bool(amod.commonProperties.Device_specific)) a.SetBoolIfTrue("LOCAL_PRODUCT_MODULE", Bool(amod.commonProperties.Product_specific)) - // TODO(b/135957588) product_services_specific is matched to LOCAL_PRODUCT_MODULE - // as a workaround. Remove this after clearing all Android.bp - a.SetBoolIfTrue("LOCAL_PRODUCT_MODULE", Bool(amod.commonProperties.Product_services_specific)) a.SetBoolIfTrue("LOCAL_SYSTEM_EXT_MODULE", Bool(amod.commonProperties.System_ext_specific)) if amod.commonProperties.Owner != nil { a.SetString("LOCAL_MODULE_OWNER", *amod.commonProperties.Owner) diff --git a/android/module.go b/android/module.go index a6b8d5364..e8d736064 100644 --- a/android/module.go +++ b/android/module.go @@ -365,11 +365,6 @@ type commonProperties struct { // /system/product if product partition does not exist). Product_specific *bool - // TODO(b/135957588) Product_services_specific will be removed once we clear all Android.bp - // files that have 'product_services_specific: true'. This will be converted to - // Product_speicific as a workaround. - Product_services_specific *bool - // whether this module extends system. When set to true, it is installed into /system_ext // (or /system/system_ext if system_ext partition does not exist). System_ext_specific *bool