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
Dlibrary_sdk_member.go449 specifiedDeps := specifiedDeps{}
450 specifiedDeps = ccModule.linker.linkerSpecifiedDeps(specifiedDeps)
455 p.SharedLibs = specifiedDeps.sharedLibs
464 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
Dlinker.go554 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_libs
562specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, linker.Properties.System_s…
565 return specifiedDeps
Dlibrary.go1106 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_libs
1122specifiedDeps.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
Dcc.go561 linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps argument
565 type specifiedDeps struct { struct