1 ########################################### 2 ## A thin wrapper around BUILD_EXECUTABLE 3 ## Common flags for native benchmarks are added. 4 ########################################### 5 6 LOCAL_STATIC_LIBRARIES += libgoogle-benchmark 7 8 LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_METRIC_TESTS)/$(LOCAL_MODULE) 9 LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_METRIC_TESTS)/$(LOCAL_MODULE) 10 11 ifndef LOCAL_MULTILIB 12 ifndef LOCAL_32_BIT_ONLY 13 LOCAL_MULTILIB := both 14 endif 15 endif 16 17 include $(BUILD_EXECUTABLE) 18