Searched refs:OtherModuleDependencyTag (Results 1 – 25 of 39) sorted by relevance
12
/build/soong/android/ |
D | license_metadata.go | 73 if isContainer || IsInstallDepNeeded(ctx.OtherModuleDependencyTag(dep)) { 77 depAnnotations := licenseAnnotationsFromTag(ctx.OtherModuleDependencyTag(dep))
|
D | path_properties_test.go | 59 if _, ok := ctx.OtherModuleDependencyTag(dep).(sourceOrOutputDependencyTag); ok {
|
D | module.go | 163 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag methodSpec 1920 …if IsInstallDepNeeded(ctx.OtherModuleDependencyTag(dep)) && !dep.IsHideFromMake() && !dep.IsSkipIn… 2248 …ctx.validateAndroidModule(bm, ctx.OtherModuleDependencyTag(m), ctx.baseModuleContext.strictVisitDe… 2459 func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag { func 2460 return b.bp.OtherModuleDependencyTag(m) 2767 returnedTag := b.bp.OtherModuleDependencyTag(aModule) 2773 returnedTag := b.bp.OtherModuleDependencyTag(module) 2817 if b.bp.OtherModuleDependencyTag(aModule) == tag { 2854 …if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisit… 2862 if b.bp.OtherModuleDependencyTag(module) == tag { [all …]
|
D | defaults.go | 355 if ctx.OtherModuleDependencyTag(module) == DefaultsDepTag {
|
D | apex.go | 164 depTag := ctx.OtherModuleDependencyTag(dep) 671 if _, ok := mctx.OtherModuleDependencyTag(dep).(CopyDirectlyInAnyApexTag); ok {
|
D | packaging.go | 227 if pi, ok := ctx.OtherModuleDependencyTag(child).(PackagingItem); !ok || !pi.IsPackagingItem() {
|
D | prebuilt.go | 356 if t := ctx.OtherModuleDependencyTag(child); t == PrebuiltDepTag {
|
D | visibility.go | 443 tag := ctx.OtherModuleDependencyTag(dep)
|
/build/soong/cc/ |
D | pgo.go | 286 if depTag, ok := ctx.OtherModuleDependencyTag(m).(libraryDependencyTag); ok { 299 if depTag, ok := ctx.OtherModuleDependencyTag(m).(libraryDependencyTag); ok {
|
D | sabi.go | 184 depTag := mctx.OtherModuleDependencyTag(child)
|
D | afdo.go | 137 tag := mctx.OtherModuleDependencyTag(dep)
|
D | lto.go | 173 tag := mctx.OtherModuleDependencyTag(dep)
|
D | coverage.go | 122 if depTag, ok := ctx.OtherModuleDependencyTag(m).(libraryDependencyTag); ok {
|
D | cc.go | 2547 depTag := ctx.OtherModuleDependencyTag(dep) 2573 depTag := ctx.OtherModuleDependencyTag(child) 2646 depTag := ctx.OtherModuleDependencyTag(dep) 2988 depTag := ctx.OtherModuleDependencyTag(dep) 3410 depTag := ctx.OtherModuleDependencyTag(dep)
|
/build/soong/java/ |
D | bootclasspath.go | 128 t := ctx.OtherModuleDependencyTag(module)
|
D | app.go | 310 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) { 436 …if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag { 749 tag := ctx.OtherModuleDependencyTag(module) 877 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) { 1303 tag, isUsesLibTag := ctx.OtherModuleDependencyTag(m).(usesLibraryDependencyTag)
|
D | aar.go | 428 depTag := ctx.OtherModuleDependencyTag(module) 564 …if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
|
D | bootclasspath_fragment.go | 470 tag := ctx.OtherModuleDependencyTag(dep) 552 tag := ctx.OtherModuleDependencyTag(module)
|
D | sdk_library.go | 1259 tag := ctx.OtherModuleDependencyTag(to) 1614 depTag := mctx.OtherModuleDependencyTag(dep) 2207 depTag := mctx.OtherModuleDependencyTag(dep) 2256 tag := ctx.OtherModuleDependencyTag(to)
|
D | base.go | 297 if staticLibTag == ctx.OtherModuleDependencyTag(dep) { 522 tag := ctx.OtherModuleDependencyTag(module) 1882 tag := ctx.OtherModuleDependencyTag(module)
|
/build/blueprint/ |
D | visit_test.go | 56 if ctx.OtherModuleDependencyTag(dep) != visitTagDep {
|
D | module_ctx.go | 291 OtherModuleDependencyTag(m Module) DependencyTag methodSpec 528 func (m *baseModuleContext) OtherModuleDependencyTag(logicModule Module) DependencyTag { func
|
/build/soong/apex/ |
D | prebuilt.go | 176 tag := ctx.OtherModuleDependencyTag(child) 348 tag := ctx.OtherModuleDependencyTag(dep) 392 tag := mctx.OtherModuleDependencyTag(child) 605 tag := ctx.OtherModuleDependencyTag(child)
|
D | apex.go | 896 depTag := mctx.OtherModuleDependencyTag(child) 1734 depTag := ctx.OtherModuleDependencyTag(child) 1809 depTag := ctx.OtherModuleDependencyTag(child) 2586 if tag := ctx.OtherModuleDependencyTag(module); tag == bcpfTag || tag == sscpfTag { 2600 tag := ctx.OtherModuleDependencyTag(module) 2674 if ctx.OtherModuleDependencyTag(module) != executableTag {
|
/build/soong/dexpreopt/ |
D | config.go | 461 if parent == ctx.Module() && ctx.OtherModuleDependencyTag(child) == Dex2oatDepTag { 470 if parent == dex2oatModule && ctx.OtherModuleDependencyTag(child) == android.PrebuiltDepTag {
|
12