Lines Matching defs:ApexModuleBase
86 type ApexModuleBase struct { struct
87 ApexProperties ApexProperties
89 canHaveApexVariants bool
91 apexVariationsLock sync.Mutex // protects apexVariations during parallel apexDepsMutator
92 apexVariations []string
95 func (m *ApexModuleBase) apexModuleBase() *ApexModuleBase {
99 func (m *ApexModuleBase) BuildForApex(apexName string) {
107 func (m *ApexModuleBase) ApexName() string {
111 func (m *ApexModuleBase) IsForPlatform() bool {
115 func (m *ApexModuleBase) setApexName(apexName string) {
119 func (m *ApexModuleBase) CanHaveApexVariants() bool {
123 func (m *ApexModuleBase) IsInstallableToApex() bool {
128 func (m *ApexModuleBase) CreateApexVariations(mctx BottomUpMutatorContext) []blueprint.Module {