This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
device_motorola_sanders/camera/Android.mk
Vachounet 87d9ebd2fe potter: camerawrapper: fix build
Change-Id: I495a25055cf783d62852f3757c9a71e77642cb91
2017-08-23 13:59:14 +02:00

21 lines
484 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_C_INCLUDES := system/media/camera/include
LOCAL_SRC_FILES := \
CameraWrapper.cpp
LOCAL_SHARED_LIBRARIES := \
libhardware liblog libcamera_client libutils libcutils libhidlbase libhidltransport
LOCAL_STATIC_LIBRARIES := \
libbase \
libarect
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
LOCAL_MODULE := camera.$(TARGET_BOARD_PLATFORM)
LOCAL_MODULE_TAGS := optional
include $(BUILD_SHARED_LIBRARY)