Add AliasVariation to BottomUpMutatorContext.
Test: TreeHugger Change-Id: Ib9c5db8f671ed8f0742183fc533dcc582269d17a
This commit is contained in:
parent
409e833def
commit
9f88ce26a8
1 changed files with 5 additions and 0 deletions
|
@ -151,6 +151,7 @@ type BottomUpMutatorContext interface {
|
|||
AddFarVariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string)
|
||||
AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module)
|
||||
ReplaceDependencies(string)
|
||||
AliasVariation(variationName string)
|
||||
}
|
||||
|
||||
type bottomUpMutatorContext struct {
|
||||
|
@ -335,3 +336,7 @@ func (b *bottomUpMutatorContext) AddInterVariantDependency(tag blueprint.Depende
|
|||
func (b *bottomUpMutatorContext) ReplaceDependencies(name string) {
|
||||
b.bp.ReplaceDependencies(name)
|
||||
}
|
||||
|
||||
func (b *bottomUpMutatorContext) AliasVariation(variationName string) {
|
||||
b.bp.AliasVariation(variationName)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue