2009-06-08 08:34:54 +00:00
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES:= \
|
2009-06-28 19:12:56 +00:00
|
|
|
netkeystore.c keymgmt.c
|
2009-06-08 08:34:54 +00:00
|
|
|
|
|
|
|
LOCAL_C_INCLUDES := \
|
2009-06-28 19:12:56 +00:00
|
|
|
$(call include-path-for, system-core)/cutils \
|
|
|
|
external/openssl/include
|
2009-06-08 08:34:54 +00:00
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
2009-06-28 19:12:56 +00:00
|
|
|
libcutils libssl
|
2009-06-08 08:34:54 +00:00
|
|
|
|
|
|
|
LOCAL_STATIC_LIBRARIES :=
|
|
|
|
|
|
|
|
LOCAL_MODULE:= keystore
|
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
|
|
endif # !simulator))
|