blob: 88046363c0ac89ee8835f1e5fdc0e8e48310b9fa [file] [log] [blame]
Chung-yih Wanga92d5dc2009-06-08 16:34:54 +08001ifneq ($(TARGET_SIMULATOR),true)
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
Hung-ying Tyanb2de5bd2009-09-11 18:34:28 +08007 netkeystore.c netkeystore_main.c keymgmt.c
Chung-yih Wanga92d5dc2009-06-08 16:34:54 +08008
9LOCAL_C_INCLUDES := \
Chung-yih Wangc186c662009-06-29 03:12:56 +080010 $(call include-path-for, system-core)/cutils \
11 external/openssl/include
Chung-yih Wanga92d5dc2009-06-08 16:34:54 +080012
13LOCAL_SHARED_LIBRARIES := \
Chung-yih Wangc186c662009-06-29 03:12:56 +080014 libcutils libssl
Chung-yih Wanga92d5dc2009-06-08 16:34:54 +080015
16LOCAL_STATIC_LIBRARIES :=
17
18LOCAL_MODULE:= keystore
19
20include $(BUILD_EXECUTABLE)
21
22endif # !simulator))