From f8e98b0804ffa468f04fe7ff77c78371e9aba774 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Fri, 11 Sep 2015 17:41:44 -0700 Subject: [PATCH] Add libbenchmark's new dependency on libbase. See https://android-review.googlesource.com/150583 Change-Id: I6f9700b3e51a3b681d3d91b88103eed31764f61e --- cc/cc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc/cc.go b/cc/cc.go index 99d462212..7f4006675 100644 --- a/cc/cc.go +++ b/cc/cc.go @@ -1575,7 +1575,7 @@ type CCBenchmark struct { func (c *CCBenchmark) depNames(ctx common.AndroidBaseContext, depNames CCDeps) CCDeps { depNames = c.CCBinary.depNames(ctx, depNames) - depNames.StaticLibs = append(depNames.StaticLibs, "libbenchmark") + depNames.StaticLibs = append(depNames.StaticLibs, "libbenchmark", "libbase") return depNames }