Home
last modified time | relevance | path

Searched refs:RegisterBottomUpMutator (Results 1 – 8 of 8) sorted by relevance

/build/soong/common/
Dmutator.go47 func RegisterBottomUpMutator(name string, mutator AndroidBottomUpMutator) { func
48 soong.RegisterBottomUpMutator(name, func(ctx blueprint.BottomUpMutatorContext) {
Darch.go28 RegisterBottomUpMutator("defaults_deps", defaultsDepsMutator)
31 RegisterBottomUpMutator("host_or_device", HostOrDeviceMutator)
32 RegisterBottomUpMutator("host_type", HostTypeMutator)
33 RegisterBottomUpMutator("arch", ArchMutator)
Dvariable.go27 RegisterBottomUpMutator("variable", variableMutator)
/build/soong/
Dregister.go49 func RegisterBottomUpMutator(name string, m blueprint.BottomUpMutator) { func
70 ctx.RegisterBottomUpMutator(t.name, t.bottomUpMutator)
/build/soong/genrule/
Dgenrule.go28 common.RegisterBottomUpMutator("genrule_deps", genruleDepsMutator)
/build/blueprint/bootstrap/
Dcommand.go93 ctx.RegisterBottomUpMutator("bootstrap_plugin_deps", pluginDeps)
/build/soong/cc/
Dcc.go59 common.RegisterBottomUpMutator("link", linkageMutator)
60 common.RegisterBottomUpMutator("test_per_src", testPerSrcMutator)
61 common.RegisterBottomUpMutator("deps", depsMutator)
/build/blueprint/
Dcontext.go246 ctx.RegisterBottomUpMutator("blueprint_deps", blueprintDepsMutator)
395 func (c *Context) RegisterBottomUpMutator(name string, mutator BottomUpMutator) { func