Home | History | Annotate | Download | only in cc

Lines Matching refs:benchmark

306 func (benchmark *benchmarkDecorator) linkerInit(ctx BaseModuleContext) {
311 benchmark.baseLinker.dynamicProperties.RunPaths = append(benchmark.baseLinker.dynamicProperties.RunPaths, runpath)
312 benchmark.binaryDecorator.linkerInit(ctx)
315 func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
316 deps = benchmark.binaryDecorator.linkerDeps(ctx, deps)
317 deps.StaticLibs = append(deps.StaticLibs, "libgoogle-benchmark")
321 func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Path) {
322 benchmark.binaryDecorator.baseInstaller.dir = filepath.Join("nativetest", ctx.ModuleName())
323 benchmark.binaryDecorator.baseInstaller.dir64 = filepath.Join("nativetest64", ctx.ModuleName())
324 benchmark.binaryDecorator.baseInstaller.install(ctx, file)
342 benchmark := &benchmarkDecorator{
345 module.linker = benchmark
346 module.installer = benchmark