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
497 func (linker *baseLinker) linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps {498 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, linker.Properties.Shared_libs...)502 if specifiedDeps.systemSharedLibs == nil {503 specifiedDeps.systemSharedLibs = linker.Properties.System_shared_libs505 …specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, linker.Properties.System_s…508 return specifiedDeps
391 specifiedDeps := specifiedDeps{}392 specifiedDeps = ccModule.linker.linkerSpecifiedDeps(specifiedDeps)396 p.SharedLibs = specifiedDeps.sharedLibs398 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
852 func (library *libraryDecorator) linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps {853 specifiedDeps = library.baseLinker.linkerSpecifiedDeps(specifiedDeps)861 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, properties.Shared_libs...)865 if specifiedDeps.systemSharedLibs == nil {866 specifiedDeps.systemSharedLibs = properties.System_shared_libs868 …specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, properties.System_shared_l…871 specifiedDeps.sharedLibs = android.FirstUniqueStrings(specifiedDeps.sharedLibs)872 if len(specifiedDeps.systemSharedLibs) > 0 {875 specifiedDeps.systemSharedLibs = android.FirstUniqueStrings(specifiedDeps.systemSharedLibs)877 return specifiedDeps
405 linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps argument408 type specifiedDeps struct { struct