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 \ |
Igor Murashkin | 98e2472 | 2013-06-19 19:51:04 -0700 | [diff] [blame] | 11 | CameraDeviceFactory.cpp \ |
Eino-Ville Talvala | 7b82efe | 2013-07-25 17:12:35 -0700 | [diff] [blame] | 12 | common/Camera2ClientBase.cpp \ |
| 13 | common/CameraDeviceBase.cpp \ |
| 14 | common/FrameProcessorBase.cpp \ |
| 15 | api1/CameraClient.cpp \ |
| 16 | api1/Camera2Client.cpp \ |
| 17 | api1/client2/Parameters.cpp \ |
| 18 | api1/client2/FrameProcessor.cpp \ |
| 19 | api1/client2/StreamingProcessor.cpp \ |
| 20 | api1/client2/JpegProcessor.cpp \ |
| 21 | api1/client2/CallbackProcessor.cpp \ |
| 22 | api1/client2/ZslProcessor.cpp \ |
| 23 | api1/client2/BurstCapture.cpp \ |
| 24 | api1/client2/JpegCompressor.cpp \ |
| 25 | api1/client2/CaptureSequencer.cpp \ |
| 26 | api1/client2/ZslProcessor3.cpp \ |
| 27 | api2/CameraDeviceClient.cpp \ |
| 28 | api_pro/ProCamera2Client.cpp \ |
| 29 | device2/Camera2Device.cpp \ |
| 30 | device3/Camera3Device.cpp \ |
| 31 | device3/Camera3Stream.cpp \ |
| 32 | device3/Camera3IOStreamBase.cpp \ |
| 33 | device3/Camera3InputStream.cpp \ |
| 34 | device3/Camera3OutputStream.cpp \ |
| 35 | device3/Camera3ZslStream.cpp \ |
Eino-Ville Talvala | f1e98d8 | 2013-09-06 09:32:43 -0700 | [diff] [blame] | 36 | device3/StatusTracker.cpp \ |
Igor Murashkin | 4060274 | 2013-04-29 10:31:06 -0700 | [diff] [blame] | 37 | gui/RingBufferConsumer.cpp \ |
Igor Murashkin | ff3e31d | 2013-10-23 16:40:06 -0700 | [diff] [blame] | 38 | utils/CameraTraces.cpp \ |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 39 | |
| 40 | LOCAL_SHARED_LIBRARIES:= \ |
| 41 | libui \ |
Ying Wang | da0dc0a | 2013-04-09 21:53:49 -0700 | [diff] [blame] | 42 | liblog \ |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 43 | libutils \ |
| 44 | libbinder \ |
| 45 | libcutils \ |
| 46 | libmedia \ |
| 47 | libcamera_client \ |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 48 | libgui \ |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 49 | libhardware \ |
Jamie Gennis | 1e5b2b3 | 2012-06-13 16:29:51 -0700 | [diff] [blame] | 50 | libsync \ |
James Painter | e538206 | 2012-09-05 18:02:32 -0700 | [diff] [blame] | 51 | libcamera_metadata \ |
| 52 | libjpeg |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 53 | |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 54 | LOCAL_C_INCLUDES += \ |
James Painter | e538206 | 2012-09-05 18:02:32 -0700 | [diff] [blame] | 55 | system/media/camera/include \ |
| 56 | external/jpeg |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 57 | |
Igor Murashkin | ddf3c50 | 2012-10-12 16:56:11 -0700 | [diff] [blame] | 58 | |
| 59 | LOCAL_CFLAGS += -Wall -Wextra |
| 60 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 61 | LOCAL_MODULE:= libcameraservice |
| 62 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 63 | include $(BUILD_SHARED_LIBRARY) |