Lines Matching refs:deps
264 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
267 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++")
269 deps.StaticLibs = append(deps.StaticLibs, "libgtest_isolated_main")
274 deps.SharedLibs = append(deps.SharedLibs, "liblog")
276 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest")
280 return deps
328 func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps {
329 deps = test.testDecorator.linkerDeps(ctx, deps)
330 deps = test.binaryDecorator.linkerDeps(ctx, deps)
331 deps.DataLibs = append(deps.DataLibs, test.Properties.Data_libs...)
332 return deps
455 func (test *testLibrary) linkerDeps(ctx DepsContext, deps Deps) Deps {
456 deps = test.testDecorator.linkerDeps(ctx, deps)
457 deps = test.libraryDecorator.linkerDeps(ctx, deps)
458 return deps
529 func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
530 deps = benchmark.binaryDecorator.linkerDeps(ctx, deps)
531 deps.StaticLibs = append(deps.StaticLibs, "libgoogle-benchmark")
532 return deps