aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2016-07-11 14:57:56 -0700
committerColin Cross <ccross@android.com>2016-07-11 22:39:35 +0000
commit26832743495a5398865304510f4689c61694e122 (patch)
tree6322a869c7c4ae268f5ffafe9128d99f6109d9fc
parent3f32f03067446f223c488f56fd1fbc633febc1fd (diff)
downloadbuild_soong-26832743495a5398865304510f4689c61694e122.tar.gz
build_soong-26832743495a5398865304510f4689c61694e122.tar.bz2
build_soong-26832743495a5398865304510f4689c61694e122.zip
Update cc_benchmark to use libgoogle-benchmark
Updates soong to match I1565cf680298a1765e88162d8b0e59dedba29bd7 Change-Id: I787675562e3f1dceb9a56f2bcb533a551cae550a
-rw-r--r--cc/cc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/cc.go b/cc/cc.go
index 4b09ab78..ad01b73e 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
}