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