blob: 0e1fbfd9a94dcaf46927ecbaee3e9bf902e1e42f [file] [log] [blame]
Dees_Troyb9d88ac2012-09-14 14:34:19 -04001# This provides a rule to make libmincrypt as a shared library.
2# As a static library, zip signature verification was crashing.
3# Making it as a shared library seems to fix that issue.
4
5LOCAL_PATH := $(call my-dir)
6include $(CLEAR_VARS)
7
8LOCAL_MODULE_TAGS:= eng
9LOCAL_MODULE := libmincrypt
10LOCAL_SRC_FILES := ../../../system/core/libmincrypt/rsa.c ../../../system/core/libmincrypt/sha.c
11include $(BUILD_SHARED_LIBRARY)