summaryrefslogtreecommitdiffstats
path: root/benchmarks
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-03-13 22:34:37 -0700
committerDan Albert <danalbert@google.com>2015-03-13 22:34:37 -0700
commit7ed5fa1e4d37722a644518594bf2b0e1529c05e9 (patch)
tree7b2c3bdb54d6a06124a4351f6cb44743637099bf /benchmarks
parentf6f96df5b031b0bf79eb8ad49bd73a3ceab87db5 (diff)
downloadbionic-7ed5fa1e4d37722a644518594bf2b0e1529c05e9.zip
bionic-7ed5fa1e4d37722a644518594bf2b0e1529c05e9.tar.gz
bionic-7ed5fa1e4d37722a644518594bf2b0e1529c05e9.tar.bz2
Moving StringPrintf to libbase.
Change-Id: I47ef28bb294ffb7c7c065c5624417edf23503b77
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/Android.mk8
-rw-r--r--benchmarks/Benchmark.cpp4
2 files changed, 6 insertions, 6 deletions
diff --git a/benchmarks/Android.mk b/benchmarks/Android.mk
index ae0541f..e1580fe 100644
--- a/benchmarks/Android.mk
+++ b/benchmarks/Android.mk
@@ -42,7 +42,7 @@ LOCAL_CFLAGS := $(benchmark_cflags)
LOCAL_CPPFLAGS := $(benchmark_cppflags)
LOCAL_SRC_FILES := $(benchmarklib_src_files)
LOCAL_C_INCLUDES := $(benchmark_c_includes)
-LOCAL_STATIC_LIBRARIES := libutils
+LOCAL_STATIC_LIBRARIES := libbase
include $(BUILD_STATIC_LIBRARY)
# Only supported on linux systems.
@@ -55,7 +55,7 @@ LOCAL_CPPFLAGS := $(benchmark_cppflags)
LOCAL_SRC_FILES := $(benchmarklib_src_files)
LOCAL_C_INCLUDES := $(benchmark_c_includes)
LOCAL_MULTILIB := both
-LOCAL_STATIC_LIBRARIES := libutils
+LOCAL_STATIC_LIBRARIES := libbase
include $(BUILD_HOST_STATIC_LIBRARY)
endif
@@ -84,7 +84,7 @@ LOCAL_MULTILIB := both
LOCAL_CFLAGS := $(benchmark_cflags)
LOCAL_CPPFLAGS := $(benchmark_cppflags)
LOCAL_SRC_FILES := $(benchmark_src_files)
-LOCAL_STATIC_LIBRARIES := libbenchmark libutils
+LOCAL_STATIC_LIBRARIES := libbenchmark libbase
include $(BUILD_EXECUTABLE)
# We don't build a static benchmark executable because it's not usually
@@ -106,7 +106,7 @@ LOCAL_CFLAGS := $(benchmark_cflags)
LOCAL_CPPFLAGS := $(benchmark_cppflags)
LOCAL_LDFLAGS := -lrt
LOCAL_SRC_FILES := $(benchmark_src_files)
-LOCAL_STATIC_LIBRARIES := libbenchmark libutils
+LOCAL_STATIC_LIBRARIES := libbenchmark libbase
include $(BUILD_HOST_EXECUTABLE)
endif
diff --git a/benchmarks/Benchmark.cpp b/benchmarks/Benchmark.cpp
index 5ca1d47..ea6000f 100644
--- a/benchmarks/Benchmark.cpp
+++ b/benchmarks/Benchmark.cpp
@@ -24,7 +24,7 @@
#include <string>
#include <vector>
-#include <utils/stringprintf.h>
+#include <base/stringprintf.h>
#include <benchmark/Benchmark.h>
@@ -108,7 +108,7 @@ std::string BenchmarkWithArg<int>::GetNameStr(int arg) {
template <>
std::string BenchmarkWithArg<double>::GetNameStr(double arg) {
- return Name() + "/" + android::StringPrintf("%0.6f", arg);
+ return Name() + "/" + android::base::StringPrintf("%0.6f", arg);
}
template<typename T>