Lines Matching refs:deps
255 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
258 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++")
260 deps.StaticLibs = append(deps.StaticLibs, "libgtest_isolated_main")
265 deps.SharedLibs = append(deps.SharedLibs, "liblog")
267 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest")
271 return deps
319 func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps {
320 deps = test.testDecorator.linkerDeps(ctx, deps)
321 deps = test.binaryDecorator.linkerDeps(ctx, deps)
322 return deps
419 func (test *testLibrary) linkerDeps(ctx DepsContext, deps Deps) Deps {
420 deps = test.testDecorator.linkerDeps(ctx, deps)
421 deps = test.libraryDecorator.linkerDeps(ctx, deps)
422 return deps
493 func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
494 deps = benchmark.binaryDecorator.linkerDeps(ctx, deps)
495 deps.StaticLibs = append(deps.StaticLibs, "libgoogle-benchmark")
496 return deps