There is no LOCAL_MODULES_TAGS. Fix by combining with LOCAL_MODULE_TAGS. Change-Id: I1cacef2f8123af3632ff6a52aa62c2f2e15ac37d
18 lines
544 B
Makefile
18 lines
544 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libcryptfsjb
|
|
LOCAL_MODULE_TAGS := eng optional
|
|
LOCAL_CFLAGS :=
|
|
LOCAL_SRC_FILES = cryptfs.c
|
|
LOCAL_C_INCLUDES += \
|
|
system/extras/ext4_utils \
|
|
external/openssl/include \
|
|
$(commands_recovery_local_path)/crypto/scrypt/lib/crypto
|
|
LOCAL_SHARED_LIBRARIES += libc liblog libcutils libcrypto libext4_utils
|
|
LOCAL_STATIC_LIBRARIES += libfs_mgrtwrp libscrypttwrp_static liblogwraptwrp libmincrypttwrp
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
endif
|