Home
last modified time | relevance | path

Searched refs:depTag (Results 1 – 13 of 13) sorted by relevance

/build/soong/rust/
Drust.go885 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 …]
Dsanitize.go137 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/
Dlinkable.go276 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 {
Dsabi.go194 depTag := mctx.OtherModuleDependencyTag(child)
195 if IsStaticDepTag(depTag) || depTag == reuseObjTag {
Dpgo.go286 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() {
Dcoverage.go112 if depTag, ok := ctx.OtherModuleDependencyTag(m).(libraryDependencyTag); ok {
113 if depTag.static() && depTag.wholeStatic {
Dsanitize.go1094 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/
Dpackaging.go64 AddDeps(ctx BottomUpMutatorContext, depTag blueprint.DependencyTag)
190 func (p *PackagingBase) AddDeps(ctx BottomUpMutatorContext, depTag blueprint.DependencyTag) {
196 ctx.AddFarVariationDependencies(t.Variations(), depTag, dep)
Dapex.go154 depTag := ctx.OtherModuleDependencyTag(dep)
155 if _, ok := depTag.(ExcludeFromApexContentsTag); ok {
/build/soong/apex/
Dapex.go859 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 …]
Dbuilder.go932 depTag := ctx.OtherModuleDependencyTag(to)
934 …if skipDepCheck, ok := depTag.(android.SkipApexAllowedDependenciesCheck); ok && skipDepCheck.SkipA…
/build/soong/java/
Djava.go254 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 {
Daar.go417 depTag := ctx.OtherModuleDependencyTag(module)
425 switch depTag {