1 ifneq ($(TARGET_SIMULATOR),true) 2 LOCAL_PATH := $(call my-dir) 3 4 include $(CLEAR_VARS) 5 6 LOCAL_CPP_EXTENSION := .cc 7 8 # Set up the target identity 9 LOCAL_MODULE := proxy_resolver_v8_unittest 10 11 LOCAL_SRC_FILES := \ 12 proxy_resolver_v8_unittest.cc 13 14 LOCAL_CFLAGS += \ 15 -Wno-endif-labels \ 16 -Wno-import \ 17 -Wno-format \ 18 19 LOCAL_C_INCLUDES += $(LOCAL_PATH)/../src $(LOCAL_PATH)/ external/v8 external/gtest 20 21 LOCAL_SHARED_LIBRARIES := libpac libutils libstlport liblog 22 23 include external/stlport/libstlport.mk 24 25 include $(BUILD_NATIVE_TEST) 26 27 endif 28