blob: 5f553c5aa48d3c0d6199c48bc5d454c90c33d7c5 [file] [log] [blame]
The Android Open Source Project7f844dd2009-03-03 19:28:47 -08001LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES := \
5 JNIHelp.c \
6 Register.c
7
8LOCAL_C_INCLUDES += \
9 $(JNI_H_INCLUDE)
10
11# Any shared/static libs required by libjavacore
12# need to be mentioned here as well.
13# TODO: fix this requirement
14
15LOCAL_SHARED_LIBRARIES := \
16 liblog \
17 libcutils \
18 libexpat \
19 libssl \
20 libutils \
21 libz \
22 libcrypto \
23 libicudata \
24 libicuuc \
25 libicui18n \
26 libsqlite
27
28LOCAL_STATIC_LIBRARIES := \
29 libjavacore \
30 libfdlibm
31
32LOCAL_MODULE := libnativehelper
33
34include $(BUILD_SHARED_LIBRARY)