2019-10-07 08:07:36 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
|
|
system/media/camera/include
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
CameraWrapper.cpp
|
|
|
|
|
|
|
|
LOCAL_STATIC_LIBRARIES := libbase libarect
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
2019-10-01 18:01:16 +00:00
|
|
|
libhardware libnativewindow libgui liblog libcamera_client libutils libcutils libdl libhidlbase libsensor \
|
2019-10-07 08:07:36 +00:00
|
|
|
android.hidl.token@1.0-utils \
|
|
|
|
android.hardware.graphics.bufferqueue@1.0
|
|
|
|
|
|
|
|
LOCAL_HEADER_LIBRARIES := libnativebase_headers
|
|
|
|
|
|
|
|
LOCAL_MODULE := camera.$(TARGET_BOARD_PLATFORM)
|
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|