Update cc_benchmark to use libgoogle-benchmark

Updates soong to match I1565cf680298a1765e88162d8b0e59dedba29bd7

Change-Id: I787675562e3f1dceb9a56f2bcb533a551cae550a
This commit is contained in:
Colin Cross 2016-07-11 14:57:56 -07:00
parent 3f32f03067
commit 2683274349

View file

@ -2245,7 +2245,7 @@ type benchmarkLinker struct {
func (benchmark *benchmarkLinker) deps(ctx BaseModuleContext, deps Deps) Deps {
deps = benchmark.binaryLinker.deps(ctx, deps)
deps.StaticLibs = append(deps.StaticLibs, "libbenchmark", "libbase")
deps.StaticLibs = append(deps.StaticLibs, "libgoogle-benchmark")
return deps
}