blob: 75f690f1867bf07991fa8f8d344c3f2d04101184 [file] [log] [blame]
Mathias Agopian1bf79782010-07-14 23:41:37 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 SensorService.cpp
6
7LOCAL_CFLAGS:= -DLOG_TAG=\"SensorService\"
8
9# need "-lrt" on Linux simulator to pick up clock_gettime
10ifeq ($(TARGET_SIMULATOR),true)
11 ifeq ($(HOST_OS),linux)
12 LOCAL_LDLIBS += -lrt -lpthread
13 endif
14endif
15
16LOCAL_SHARED_LIBRARIES := \
17 libcutils \
18 libhardware \
19 libutils \
20 libbinder \
21 libui \
22 libgui
23
24LOCAL_PRELINK_MODULE := false
25
26LOCAL_MODULE:= libsensorservice
27
28include $(BUILD_SHARED_LIBRARY)