24 lines
523 B
Makefile
24 lines
523 B
Makefile
ifeq ($(TARGET_HW_DISK_ENCRYPTION),true)
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
sourceFiles := \
|
|
cryptfs_hw.c
|
|
|
|
commonSharedLibraries := \
|
|
libcutils \
|
|
libutils \
|
|
libdl
|
|
|
|
LOCAL_C_INCLUDES := $(commonIncludes)
|
|
LOCAL_SRC_FILES := $(sourceFiles)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE:= libcryptfs_hw
|
|
LOCAL_SHARED_LIBRARIES := $(commonSharedLibraries)
|
|
|
|
LOCAL_MODULE_OWNER := qcom
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
endif
|