Home
last modified time | relevance | path

Searched refs:GetDirectDepWithTag (Results 1 – 10 of 10) sorted by relevance

/build/soong/rust/
Dcoverage.go56 coverage := ctx.GetDirectDepWithTag(CovLibraryName, cc.CoverageDepTag).(cc.LinkableInterface)
Dbindgen.go205 …cmd = ctx.GetDirectDepWithTag(b.Properties.Custom_bindgen, customBindgenDepTag).(*Module).HostTool…
Drust.go811 sourceMod := actx.GetDirectDepWithTag(mod.Name(), sourceDepTag)
/build/soong/cc/
Dcoverage.go146 coverage := ctx.GetDirectDepWithTag(getGcovProfileLibraryName(ctx), CoverageDepTag).(*Module)
153 coverage := ctx.GetDirectDepWithTag(getClangProfileLibraryName(ctx), CoverageDepTag).(*Module)
/build/soong/android/
Dpath_properties_test.go66 if ctx.GetDirectDepWithTag(SrcIsModule(p.props.Foo), sourceOrOutputDepTag("")) == nil {
Dpaths.go91 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module methodSpec
449 module := ctx.GetDirectDepWithTag(moduleName, sourceOrOutputDepTag(tag))
/build/soong/java/
Dclasspath_fragment.go104 dep := ctx.GetDirectDepWithTag(name, tag)
Drobolectric.go190 runtimes := ctx.GetDirectDepWithTag("robolectric-android-all-prebuilts", roboRuntimesTag)
397 runtimeFromSourceModule := ctx.GetDirectDepWithTag(String(r.props.Lib), libTag)
/build/soong/filesystem/
Dbootimg.go185 ramdisk := ctx.GetDirectDepWithTag(ramdiskName, bootimgRamdiskDep)
/build/blueprint/
Dmodule_ctx.go198 GetDirectDepWithTag(name string, tag DependencyTag) Module methodSpec
603 func (m *baseModuleContext) GetDirectDepWithTag(name string, tag DependencyTag) Module { func