Lines Matching refs:deps
166 func (stl *stl) deps(ctx BaseModuleContext, deps Deps) Deps { func
172 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
174 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl)
183 deps.StaticLibs = append(deps.StaticLibs, "libc++demangle")
187 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc", staticUnwinder(ctx))
189 deps.StaticUnwinderIfLegacy = true
195 deps.StaticUnwinderIfLegacy = true
201 deps.SharedLibs = append([]string{"libstdc++"}, deps.SharedLibs...)
204 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
206 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl, "ndk_libc++abi")
209 deps.StaticLibs = append(deps.StaticLibs, "ndk_libandroid_support")
212 deps.StaticLibs = append(deps.StaticLibs, "ndk_libunwind")
214 deps.StaticLibs = append(deps.StaticLibs, "libgcc_stripped")
220 return deps