Merge "Skip DepsMutator on disabled modules"
am: 418d261481
Change-Id: Id3f90a67abae7483b1b0697790854aff0a8d5bda
This commit is contained in:
commit
2ddd61f238
|
@ -205,7 +205,7 @@ func (mutator *mutator) Parallel() MutatorHandle {
|
|||
}
|
||||
|
||||
func depsMutator(ctx BottomUpMutatorContext) {
|
||||
if m, ok := ctx.Module().(Module); ok {
|
||||
if m, ok := ctx.Module().(Module); ok && m.Enabled() {
|
||||
m.DepsMutator(ctx)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue