Searched refs:hasDep (Results 1 – 6 of 6) sorted by relevance
/build/soong/cc/ |
D | lto_test.go | 30 func hasDep(result *android.TestResult, m android.Module, wantDep android.Module) bool { func 76 if !hasDep(result, libLto, libFoo) { 81 if !hasDep(result, libFoo, libBaz) { 86 if !hasDep(result, libLto, libNeverLto) { 91 if !hasDep(result, libLto, libBar) { 145 if !hasDep(result, libRoot, libFoo.Module()) { 150 if !hasDep(result, libRootLtoNever, libFooNoLto.Module()) { 160 if !hasDep(result, libFoo.Module(), libBaz.Module()) {
|
D | prebuilt_test.go | 133 hasDep := func(m android.Module, wantDep android.Module) bool { 144 if !hasDep(liba, prebuiltLiba) { 148 if !hasDep(libb, prebuiltLibb) { 152 if !hasDep(libd, prebuiltLibd) { 156 if !hasDep(libe, prebuiltLibe) { 160 if !hasDep(libfStatic, prebuiltLibfStatic) { 164 if !hasDep(libfShared, prebuiltLibfShared) { 168 if !hasDep(crtx, prebuiltCrtx) { 547 hasDep := func(ctx *android.TestContext, m android.Module, wantDep android.Module) bool { 597 …dency from %s to %s\n", libfoo.Name(), tc.expectedDependencyName), true, hasDep(ctx, libfoo, expec… [all …]
|
D | cc_test.go | 3156 hasDep := func(m android.Module, wantDep android.Module) bool { 3174 …hould have dependency on libbar with image variant "+imageVariant, true, hasDep(binFooModule, libB…
|
/build/soong/java/ |
D | system_modules_test.go | 193 …hasDep := CheckModuleHasDependency(t, res.TestContext, "foo", "android_common", tc.selectedDepende… 194 …ls(t, fmt.Sprintf("expected dependency from foo to %s\n", tc.selectedDependencyName), true, hasDep)
|
D | java_test.go | 2656 hasDep := func(ctx *android.TestResult, m android.Module, wantDep android.Module) bool { 2713 …from %s to %s\n", foo.Module().Name(), tc.expectedDependencyName), true, hasDep(ctx, foo.Module(),…
|
/build/soong/apex/ |
D | apex_test.go | 10151 hasDep := func(m android.Module, wantDep android.Module) bool { 10167 …(t, "apex variant should link against API surface stub libraries", true, hasDep(binfooApexVariant,… 10168 …(t, "apex variant should link against original library if exists", true, hasDep(binfooApexVariant,… 10178 …ould link against API surface stub libraries even from same APEX", true, hasDep(binfooApexVariant,… 10179 …(t, "apex variant should link against original library if exists", true, hasDep(binfooApexVariant,… 10187 …e stub libraries even original library definition does not exist", true, hasDep(binfooApexVariant,… 10240 hasDep := func(m android.Module, wantDep android.Module) bool { 10256 …(t, "apex variant should link against API surface stub libraries", true, hasDep(binfooApexVariant,… 10257 …(t, "apex variant should link against original library if exists", true, hasDep(binfooApexVariant,…
|