Home | History | Annotate | Download | only in test
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
      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
     20 
     21 LOCAL_SHARED_LIBRARIES := libpac libutils liblog
     22 
     23 include $(BUILD_NATIVE_TEST)
     24