From 26832743495a5398865304510f4689c61694e122 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Mon, 11 Jul 2016 14:57:56 -0700 Subject: [PATCH] Update cc_benchmark to use libgoogle-benchmark Updates soong to match I1565cf680298a1765e88162d8b0e59dedba29bd7 Change-Id: I787675562e3f1dceb9a56f2bcb533a551cae550a --- cc/cc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc/cc.go b/cc/cc.go index 4b09ab781..ad01b73ed 100644 --- a/cc/cc.go +++ b/cc/cc.go @@ -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 }