Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
Trevor Drake | 27fab9b | 2013-05-16 01:58:13 +0100 | [diff] [blame] | 2 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_MODULE := libcryptfsjb |
| 6 | LOCAL_MODULE_TAGS := eng |
| 7 | LOCAL_MODULES_TAGS = optional |
| 8 | LOCAL_CFLAGS = |
| 9 | LOCAL_SRC_FILES = cryptfs.c |
Dees Troy | 4dff2e6 | 2013-11-10 04:11:43 +0000 | [diff] [blame] | 10 | LOCAL_C_INCLUDES += system/extras/ext4_utils external/openssl/include bootable/recovery/crypto/scrypt/lib/crypto |
| 11 | LOCAL_SHARED_LIBRARIES += libc liblog libcutils libcrypto libext4_utils |
| 12 | LOCAL_STATIC_LIBRARIES += libfs_mgrtwrp libscrypttwrp_static liblogwraptwrp libmincrypttwrp |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 13 | |
Trevor Drake | 27fab9b | 2013-05-16 01:58:13 +0100 | [diff] [blame] | 14 | include $(BUILD_SHARED_LIBRARY) |
| 15 | endif |