Searched refs:depTag (Results 1 – 13 of 13) sorted by relevance
/build/soong/rust/ |
D | rust.go | 885 func IsDylibDepTag(depTag blueprint.DependencyTag) bool { 886 tag, ok := depTag.(dependencyTag) 890 func IsRlibDepTag(depTag blueprint.DependencyTag) bool { 891 tag, ok := depTag.(dependencyTag) 897 depTag dependencyTag member 903 rlibAutoDep = autoDep{variation: rlibVariation, depTag: rlibDepTag} 904 dylibAutoDep = autoDep{variation: dylibVariation, depTag: dylibDepTag} 933 depTag := ctx.OtherModuleDependencyTag(dep) 939 switch depTag { 981 if depTag != procMacroDepTag { [all …]
|
D | sanitize.go | 137 var depTag blueprint.DependencyTag 144 depTag = cc.SharedDepTag() 158 depTag = cc.StaticDepTag(false) 163 depTag = cc.SharedDepTag() 168 mctx.AddFarVariationDependencies(variations, depTag, deps...)
|
/build/soong/cc/ |
D | linkable.go | 276 func DepTagMakeSuffix(depTag blueprint.DependencyTag) string { 277 if libDepTag, ok := depTag.(libraryDependencyTag); ok { 294 func IsWholeStaticLib(depTag blueprint.DependencyTag) bool { 295 if tag, ok := depTag.(libraryDependencyTag); ok {
|
D | sabi.go | 194 depTag := mctx.OtherModuleDependencyTag(child) 195 if IsStaticDepTag(depTag) || depTag == reuseObjTag {
|
D | pgo.go | 286 if depTag, ok := ctx.OtherModuleDependencyTag(m).(libraryDependencyTag); ok { 287 if depTag.static() && depTag.wholeStatic { 299 if depTag, ok := ctx.OtherModuleDependencyTag(m).(libraryDependencyTag); ok { 300 if depTag.static() {
|
D | coverage.go | 112 if depTag, ok := ctx.OtherModuleDependencyTag(m).(libraryDependencyTag); ok { 113 if depTag.static() && depTag.wholeStatic {
|
D | sanitize.go | 1094 depTag := libraryDependencyTag{Kind: staticLibraryDependency, wholeStatic: true} 1100 mctx.AddFarVariationDependencies(variations, depTag, noteDep) 1169 depTag := libraryDependencyTag{Kind: staticLibraryDependency} 1175 mctx.AddFarVariationDependencies(variations, depTag, deps...) 1189 depTag := libraryDependencyTag{ 1200 c.addSharedLibDependenciesWithVersions(mctx, variations, depTag, runtimeLibrary, "", true)
|
/build/soong/android/ |
D | packaging.go | 64 AddDeps(ctx BottomUpMutatorContext, depTag blueprint.DependencyTag) 190 func (p *PackagingBase) AddDeps(ctx BottomUpMutatorContext, depTag blueprint.DependencyTag) { 196 ctx.AddFarVariationDependencies(t.Variations(), depTag, dep)
|
D | apex.go | 154 depTag := ctx.OtherModuleDependencyTag(dep) 155 if _, ok := depTag.(ExcludeFromApexContentsTag); ok {
|
/build/soong/apex/ |
D | apex.go | 859 depTag := mctx.OtherModuleDependencyTag(child) 864 …if required, ok := depTag.(android.AlwaysRequireApexVariantTag); ok && required.AlwaysRequireApexV… 1588 depTag := ctx.OtherModuleDependencyTag(child) 1589 if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok { 1592 if dt, ok := depTag.(dependencyTag); ok && !dt.payload { 1656 depTag := ctx.OtherModuleDependencyTag(child) 1657 if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok { 1662 switch depTag { 1664 isJniLib := depTag == jniLibTag 1834 if cc.IsSharedDepTag(depTag) || cc.IsRuntimeDepTag(depTag) { [all …]
|
D | builder.go | 932 depTag := ctx.OtherModuleDependencyTag(to) 934 …if skipDepCheck, ok := depTag.(android.SkipApexAllowedDependenciesCheck); ok && skipDepCheck.SkipA…
|
/build/soong/java/ |
D | java.go | 254 func IsJniDepTag(depTag blueprint.DependencyTag) bool { 255 return depTag == jniLibTag 285 func IsLibDepTag(depTag blueprint.DependencyTag) bool { 286 return depTag == libTag 289 func IsStaticLibDepTag(depTag blueprint.DependencyTag) bool { 290 return depTag == staticLibTag 1817 depTag := ctx.OtherModuleDependencyTag(depModule) 1818 if depTag == libTag || depTag == usesLibTag { 1820 } else if depTag == staticLibTag {
|
D | aar.go | 417 depTag := ctx.OtherModuleDependencyTag(module) 425 switch depTag {
|