Merge "Revert "Make the enabled property configurable"" into aosp-main-future

This commit is contained in:
Priyanka Advani
2024-05-01 23:03:34 +00:00
committed by Android (Google) Code Review
53 changed files with 131 additions and 189 deletions

View File

@@ -119,7 +119,7 @@ func isModuleSupported(ctx android.SingletonContext, module android.Module) (*Mo
if !ok {
return nil, false
}
if !rModule.Enabled(ctx) {
if !rModule.Enabled() {
return nil, false
}
return rModule, true