Home | History | Annotate | Download | only in tests
      1 # Build the unit tests.
      2 LOCAL_PATH := $(call my-dir)
      3 
      4 include $(LOCAL_PATH)/Android.nativebridge-dummy.mk
      5 
      6 include $(CLEAR_VARS)
      7 
      8 # Build the unit tests.
      9 test_src_files := \
     10     CodeCacheCreate_test.cpp \
     11     CodeCacheExists_test.cpp \
     12     CodeCacheStatFail_test.cpp \
     13     CompleteFlow_test.cpp \
     14     InvalidCharsNativeBridge_test.cpp \
     15     NativeBridge2Signal_test.cpp \
     16     NativeBridgeVersion_test.cpp \
     17     NeedsNativeBridge_test.cpp \
     18     PreInitializeNativeBridge_test.cpp \
     19     PreInitializeNativeBridgeFail1_test.cpp \
     20     PreInitializeNativeBridgeFail2_test.cpp \
     21     ReSetupNativeBridge_test.cpp \
     22     UnavailableNativeBridge_test.cpp \
     23     ValidNameNativeBridge_test.cpp \
     24     NativeBridge3UnloadLibrary_test.cpp \
     25     NativeBridge3GetError_test.cpp \
     26     NativeBridge3IsPathSupported_test.cpp \
     27     NativeBridge3InitAnonymousNamespace_test.cpp \
     28     NativeBridge3CreateNamespace_test.cpp \
     29     NativeBridge3LoadLibraryExt_test.cpp
     30 
     31 
     32 shared_libraries := \
     33     liblog \
     34     libnativebridge \
     35     libnativebridge-dummy
     36 
     37 $(foreach file,$(test_src_files), \
     38     $(eval include $(CLEAR_VARS)) \
     39     $(eval LOCAL_CLANG := true) \
     40     $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
     41     $(eval LOCAL_SRC_FILES := $(file)) \
     42     $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
     43     $(eval include $(BUILD_NATIVE_TEST)) \
     44 )
     45 
     46 $(foreach file,$(test_src_files), \
     47     $(eval include $(CLEAR_VARS)) \
     48     $(eval LOCAL_CLANG := true) \
     49     $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
     50     $(eval LOCAL_SRC_FILES := $(file)) \
     51     $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
     52     $(eval include $(BUILD_HOST_NATIVE_TEST)) \
     53 )
     54