Lines Matching refs:deps
140 func (stl *stl) deps(ctx BaseModuleContext, deps Deps) Deps { func
146 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
148 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl)
157 deps.StaticLibs = append(deps.StaticLibs, "libc++demangle")
161 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc", staticUnwinder(ctx))
163 deps.StaticUnwinderIfLegacy = true
169 deps.StaticUnwinderIfLegacy = true
175 deps.SharedLibs = append([]string{"libstdc++"}, deps.SharedLibs...)
178 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
180 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl, "ndk_libc++abi")
185 deps.LateStaticLibs = append(deps.LateStaticLibs, "ndk_libandroid_support")
187 deps.StaticLibs = append(deps.StaticLibs, "ndk_libunwind")
192 return deps