Home
last modified time | relevance | path

Searched refs:specifiedDeps (Results 1 – 5 of 5) sorted by relevance

/build/soong/cc/
Dbinary_sdk_member.go134 specifiedDeps := specifiedDeps{}
135 specifiedDeps = ccModule.linker.linkerSpecifiedDeps(specifiedDeps)
137 p.SharedLibs = specifiedDeps.sharedLibs
138 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
Dlinker.go497 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_libs
505specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, linker.Properties.System_s…
508 return specifiedDeps
Dlibrary_sdk_member.go391 specifiedDeps := specifiedDeps{}
392 specifiedDeps = ccModule.linker.linkerSpecifiedDeps(specifiedDeps)
396 p.SharedLibs = specifiedDeps.sharedLibs
398 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
Dlibrary.go852 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_libs
868specifiedDeps.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
Dcc.go405 linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps argument
408 type specifiedDeps struct { struct