Lines Matching refs:deps
159 func (stl *stl) deps(ctx BaseModuleContext, deps Deps) Deps { func
165 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
167 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl)
176 deps.StaticLibs = append(deps.StaticLibs, "libc++demangle")
180 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc", staticUnwinder(ctx))
182 deps.StaticUnwinderIfLegacy = true
188 deps.StaticUnwinderIfLegacy = true
194 deps.SharedLibs = append([]string{"libstdc++"}, deps.SharedLibs...)
197 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
199 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl, "ndk_libc++abi")
202 deps.StaticLibs = append(deps.StaticLibs, "ndk_libandroid_support")
204 deps.StaticLibs = append(deps.StaticLibs, "ndk_libunwind")
209 return deps