Searched refs:specifiedDeps (Results 1 – 5 of 5) sorted by relevance
134 specifiedDeps := specifiedDeps{}135 specifiedDeps = ccModule.linker.linkerSpecifiedDeps(specifiedDeps)137 p.SharedLibs = specifiedDeps.sharedLibs138 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
449 specifiedDeps := specifiedDeps{}450 specifiedDeps = ccModule.linker.linkerSpecifiedDeps(specifiedDeps)455 p.SharedLibs = specifiedDeps.sharedLibs464 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
554 func (linker *baseLinker) linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps {555 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, linker.Properties.Shared_libs...)559 if specifiedDeps.systemSharedLibs == nil {560 specifiedDeps.systemSharedLibs = linker.Properties.System_shared_libs562 …specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, linker.Properties.System_s…565 return specifiedDeps
1106 func (library *libraryDecorator) linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps {1107 specifiedDeps = library.baseLinker.linkerSpecifiedDeps(specifiedDeps)1115 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, properties.Shared_libs...)1119 if specifiedDeps.systemSharedLibs == nil {1120 specifiedDeps.systemSharedLibs = properties.System_shared_libs1122 …specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, properties.System_shared_l…1125 specifiedDeps.sharedLibs = android.FirstUniqueStrings(specifiedDeps.sharedLibs)1126 if len(specifiedDeps.systemSharedLibs) > 0 {1129 specifiedDeps.systemSharedLibs = android.FirstUniqueStrings(specifiedDeps.systemSharedLibs)1131 return specifiedDeps
561 linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps argument565 type specifiedDeps struct { struct