Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | main.cpp \ |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame^] | 6 | ProCameraTests.cpp \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 7 | |
| 8 | LOCAL_SHARED_LIBRARIES := \ |
| 9 | libutils \ |
| 10 | libcutils \ |
| 11 | libstlport \ |
| 12 | libcamera_metadata \ |
| 13 | libcamera_client \ |
| 14 | libgui \ |
| 15 | libsync \ |
| 16 | libui \ |
| 17 | libdl |
| 18 | |
| 19 | LOCAL_STATIC_LIBRARIES := \ |
| 20 | libgtest |
| 21 | |
| 22 | LOCAL_C_INCLUDES += \ |
| 23 | bionic \ |
| 24 | bionic/libstdc++/include \ |
| 25 | external/gtest/include \ |
| 26 | external/stlport/stlport \ |
| 27 | system/media/camera/include \ |
| 28 | frameworks/av/services/camera/libcameraservice \ |
| 29 | frameworks/av/include/camera \ |
| 30 | frameworks/native/include \ |
| 31 | |
| 32 | LOCAL_CFLAGS += -Wall -Wextra |
| 33 | |
| 34 | LOCAL_MODULE:= camera_client_test |
| 35 | LOCAL_MODULE_TAGS := tests |
| 36 | |
| 37 | include $(BUILD_EXECUTABLE) |