blob: e9a8ebc723630d6cfb2a935a3fc5f7273573dc66 [file] [log] [blame]
Eino-Ville Talvalafed0c022012-03-22 13:11:05 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
Eino-Ville Talvala567b4a22012-04-23 09:29:38 -07005 camera2.cpp \
Igor Murashkine302ee32012-11-05 11:14:49 -08006 camera2_utils.cpp \
7 main.cpp \
8 CameraMetadataTests.cpp \
9 CameraModuleTests.cpp \
10 CameraStreamTests.cpp \
11 CameraFrameTests.cpp \
Eino-Ville Talvalafed0c022012-03-22 13:11:05 -070012
13LOCAL_SHARED_LIBRARIES := \
14 libutils \
Igor Murashkine302ee32012-11-05 11:14:49 -080015 libcutils \
Eino-Ville Talvalafed0c022012-03-22 13:11:05 -070016 libstlport \
17 libhardware \
Eino-Ville Talvala567b4a22012-04-23 09:29:38 -070018 libcamera_metadata \
Igor Murashkine302ee32012-11-05 11:14:49 -080019 libcameraservice \
Eino-Ville Talvalafa7a91d2012-05-22 10:41:20 -070020 libgui \
Jamie Gennisbd85f472012-06-13 16:36:01 -070021 libsync \
Igor Murashkine302ee32012-11-05 11:14:49 -080022 libui \
23 libdl
Eino-Ville Talvalafed0c022012-03-22 13:11:05 -070024
25LOCAL_STATIC_LIBRARIES := \
Igor Murashkine302ee32012-11-05 11:14:49 -080026 libgtest
Eino-Ville Talvalafed0c022012-03-22 13:11:05 -070027
28LOCAL_C_INCLUDES += \
29 bionic \
30 bionic/libstdc++/include \
31 external/gtest/include \
32 external/stlport/stlport \
33 system/media/camera/include \
Igor Murashkine302ee32012-11-05 11:14:49 -080034 frameworks/av/services/camera/libcameraservice \
35 frameworks/native/include \
Eino-Ville Talvalafed0c022012-03-22 13:11:05 -070036
Eino-Ville Talvala567b4a22012-04-23 09:29:38 -070037LOCAL_MODULE:= camera2_test
Eino-Ville Talvalafed0c022012-03-22 13:11:05 -070038LOCAL_MODULE_TAGS := tests
39
40include $(BUILD_EXECUTABLE)