Home | History | Annotate | Download | only in test
      1 # Build the unit tests
      2 LOCAL_PATH:= $(call my-dir)
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_MODULE := MediaResourceManager_test
      6 
      7 LOCAL_MODULE_TAGS := tests
      8 
      9 LOCAL_SRC_FILES := \
     10   MediaResourceManager_test.cpp \
     11 
     12 LOCAL_SHARED_LIBRARIES := \
     13   liblog \
     14   libmrm_arbitrator \
     15   libutils \
     16 
     17 LOCAL_C_INCLUDES := \
     18   $(LOCAL_PATH)/../arbitrator \
     19 
     20 #LOCAL_32_BIT_ONLY := true
     21 
     22 include $(BUILD_NATIVE_TEST)
     23 
     24