Home | History | Annotate | Download | only in tests
      1 # Build the unit tests.
      2 LOCAL_PATH:= $(call my-dir)
      3 include $(CLEAR_VARS)
      4 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
      5 
      6 LOCAL_SHARED_LIBRARIES := \
      7 	libutils \
      8 	libcamera_metadata
      9 
     10 LOCAL_C_INCLUDES := \
     11 	system/media/camera/include \
     12 	system/media/private/camera/include
     13 
     14 LOCAL_SRC_FILES := \
     15 	camera_metadata_tests.cpp
     16 
     17 LOCAL_CFLAGS += -Wall -Wextra -Werror
     18 
     19 LOCAL_MODULE := camera_metadata_tests
     20 LOCAL_MODULE_TAGS := tests
     21 LOCAL_MODULE_STEM_32 := camera_metadata_tests
     22 LOCAL_MODULE_STEM_64 := camera_metadata_tests64
     23 LOCAL_MULTILIB := both
     24 
     25 include $(BUILD_NATIVE_TEST)
     26