blob: 1e52fa438179e54b6f312d61e3c8da5c185648ed [file] [log] [blame]
Kenny Rootbe857d42010-08-18 15:59:25 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 IMountServiceListener.cpp \
6 IMountShutdownObserver.cpp \
7 IObbActionListener.cpp \
8 IMountService.cpp
9
10LOCAL_STATIC_LIBRARIES := \
11 libutils \
12 libbinder
13
14LOCAL_MODULE:= libstorage
15
16ifeq ($(TARGET_SIMULATOR),true)
17 LOCAL_LDLIBS += -lpthread
18endif
19
20include $(BUILD_STATIC_LIBRARY)