summaryrefslogtreecommitdiffstats
path: root/tests/camera2/Android.mk
blob: c378e1231bb521f5efe031aefcd8452b5d2b9dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	camera2.cpp \
	camera2_utils.cpp

LOCAL_SHARED_LIBRARIES := \
	libutils \
	libstlport \
	libhardware \
	libcamera_metadata \
	libgui \
	libsync \
	libui

LOCAL_STATIC_LIBRARIES := \
	libgtest \
	libgtest_main

LOCAL_C_INCLUDES += \
	bionic \
	bionic/libstdc++/include \
	external/gtest/include \
	external/stlport/stlport \
	system/media/camera/include \

LOCAL_MODULE:= camera2_test
LOCAL_MODULE_TAGS := tests

include $(BUILD_EXECUTABLE)