Home | History | Annotate | Download | only in core
      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 
      7 LOCAL_STATIC_LIBRARIES += libgoogle-benchmark
      8 
      9 LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_METRIC_TESTS)/$(LOCAL_MODULE)
     10 LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_METRIC_TESTS)/$(LOCAL_MODULE)
     11 
     12 ifndef LOCAL_MULTILIB
     13 ifndef LOCAL_32_BIT_ONLY
     14 LOCAL_MULTILIB := both
     15 endif
     16 endif
     17 
     18 include $(BUILD_EXECUTABLE)
     19