• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1###########################################
2## A thin wrapper around BUILD_EXECUTABLE
3## Common flags for native benchmarks are added.
4###########################################
5$(call record-module-type,NATIVE_BENCHMARK)
6
7LOCAL_STATIC_LIBRARIES += libgoogle-benchmark
8
9LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_METRIC_TESTS)/$(LOCAL_MODULE)
10LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_METRIC_TESTS)/$(LOCAL_MODULE)
11
12ifndef LOCAL_MULTILIB
13ifndef LOCAL_32_BIT_ONLY
14LOCAL_MULTILIB := both
15endif
16endif
17
18include $(BUILD_EXECUTABLE)
19