summaryrefslogtreecommitdiffstats
path: root/tests/camera2/Android.mk
blob: 340ec309082b4ad728918f6a8b9e2952b2576eb9 (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
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	camera2.cpp

LOCAL_SHARED_LIBRARIES := \
	libutils \
	libstlport \
	libhardware \
	libcamera_metadata

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_hal_tests
LOCAL_MODULE_TAGS := tests

include $(BUILD_EXECUTABLE)