Home | History | Annotate | Download | only in tests
      1 # Build the unit tests.
      2 LOCAL_PATH:= $(call my-dir)
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_SHARED_LIBRARIES := \
      6 	libutils \
      7 	libstlport \
      8 	libcamera_metadata
      9 
     10 LOCAL_STATIC_LIBRARIES := \
     11 	libgtest \
     12 	libgtest_main
     13 
     14 LOCAL_C_INCLUDES := \
     15 	bionic \
     16 	bionic/libstdc++/include \
     17 	external/gtest/include \
     18 	external/stlport/stlport \
     19 	system/media/camera/include \
     20 
     21 LOCAL_SRC_FILES := \
     22 	camera_metadata_tests.cpp
     23 
     24 LOCAL_MODULE := camera_metadata_tests
     25 LOCAL_MODULE_TAGS := tests
     26 
     27 include $(BUILD_EXECUTABLE)
     28