Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | |||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 3 | # |
4 | # libcameraservice | ||||
5 | # | ||||
6 | |||||
7 | include $(CLEAR_VARS) | ||||
8 | |||||
9 | LOCAL_SRC_FILES:= \ | ||||
Eino-Ville Talvala | 5e08d60 | 2012-05-16 14:59:25 -0700 | [diff] [blame] | 10 | CameraService.cpp \ |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 11 | CameraClient.cpp \ |
12 | Camera2Client.cpp \ | ||||
Eino-Ville Talvala | cab96a4 | 2012-08-24 11:29:22 -0700 | [diff] [blame] | 13 | Camera2Device.cpp \ |
Eino-Ville Talvala | 2e19c3c | 2012-08-26 09:29:28 -0700 | [diff] [blame] | 14 | camera2/CameraMetadata.cpp \ |
Eino-Ville Talvala | a16733e | 2012-08-27 23:41:56 -0700 | [diff] [blame] | 15 | camera2/Parameters.cpp \ |
Eino-Ville Talvala | ea0d51b | 2012-08-28 01:25:43 -0700 | [diff] [blame^] | 16 | camera2/FrameProcessor.cpp \ |
17 | camera2/CaptureProcessor.cpp | ||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 18 | |
19 | LOCAL_SHARED_LIBRARIES:= \ | ||||
20 | libui \ | ||||
21 | libutils \ | ||||
22 | libbinder \ | ||||
23 | libcutils \ | ||||
24 | libmedia \ | ||||
Glenn Kasten | b12153e | 2012-03-16 11:42:24 -0700 | [diff] [blame] | 25 | libmedia_native \ |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 26 | libcamera_client \ |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 27 | libgui \ |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 28 | libhardware \ |
Jamie Gennis | 1e5b2b3 | 2012-06-13 16:29:51 -0700 | [diff] [blame] | 29 | libsync \ |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 30 | libcamera_metadata |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 31 | |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 32 | LOCAL_C_INCLUDES += \ |
33 | system/media/camera/include | ||||
34 | |||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 35 | LOCAL_MODULE:= libcameraservice |
36 | |||||
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 37 | include $(BUILD_SHARED_LIBRARY) |