mirror of
https://github.com/S3NEO/android_device_samsung_msm8226-common.git
synced 2024-11-06 21:55:45 +00:00
a08bb59d7b
Since these were combined into libhidlbase. Bug: 135686713 Test: build only (libhwbinder/libhidltransport are empty) Change-Id: I640a3f0e0839214523627bf0b59fd5ae9dd2c61c
23 lines
642 B
Makefile
23 lines
642 B
Makefile
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 := \
|
|
libhardware libnativewindow libgui liblog libcamera_client libutils libcutils libdl libhidlbase libsensor \
|
|
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)
|