diff options
Diffstat (limited to 'camera-wrapper')
-rw-r--r-- | camera-wrapper/Android.mk | 13 | ||||
-rw-r--r-- | camera-wrapper/CameraWrapper.cpp | 2 |
2 files changed, 13 insertions, 2 deletions
diff --git a/camera-wrapper/Android.mk b/camera-wrapper/Android.mk index ff96615..bf6dccf 100644 --- a/camera-wrapper/Android.mk +++ b/camera-wrapper/Android.mk @@ -19,13 +19,24 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_C_INCLUDES := \ + framework/native/include \ system/media/camera/include LOCAL_SRC_FILES := \ CameraWrapper.cpp LOCAL_SHARED_LIBRARIES := \ - libhardware liblog libcamera_client libgui libutils + libhardware \ + liblog \ + libcamera_client \ + libgui \ + libhidltransport \ + libsensor \ + libutils \ + android.hidl.token@1.0-utils + +LOCAL_STATIC_LIBRARIES := \ + libarect LOCAL_MODULE_RELATIVE_PATH := hw LOCAL_MODULE := camera.$(TARGET_BOARD_PLATFORM) diff --git a/camera-wrapper/CameraWrapper.cpp b/camera-wrapper/CameraWrapper.cpp index 55bc71a..ce9e438 100644 --- a/camera-wrapper/CameraWrapper.cpp +++ b/camera-wrapper/CameraWrapper.cpp @@ -28,7 +28,7 @@ #include <utils/threads.h> #include <utils/String8.h> -#include <gui/SensorManager.h> +#include <sensor/SensorManager.h> #include <hardware/hardware.h> #include <hardware/camera.h> #include <camera/Camera.h> |