Lines Matching refs:deps
281 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
284 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++")
286 deps.StaticLibs = append(deps.StaticLibs, "libgtest_isolated_main")
291 deps.SharedLibs = append(deps.SharedLibs, "liblog")
293 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest")
297 return deps
346 func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps {
347 deps = test.testDecorator.linkerDeps(ctx, deps)
348 deps = test.binaryDecorator.linkerDeps(ctx, deps)
349 deps.DataLibs = append(deps.DataLibs, test.Properties.Data_libs...)
350 return deps
494 func (test *testLibrary) linkerDeps(ctx DepsContext, deps Deps) Deps {
495 deps = test.testDecorator.linkerDeps(ctx, deps)
496 deps = test.libraryDecorator.linkerDeps(ctx, deps)
497 return deps
568 func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
569 deps = benchmark.binaryDecorator.linkerDeps(ctx, deps)
570 deps.StaticLibs = append(deps.StaticLibs, "libgoogle-benchmark")
571 return deps