blob: 249558ac8601c281fbbb165010524a672e11b6af [file] [log] [blame]
Mathias Agopian589ce852010-07-13 22:21:56 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 ISensorEventConnection.cpp \
6 ISensorServer.cpp \
7 Sensor.cpp \
8 SensorChannel.cpp \
9 SensorEventQueue.cpp \
10 SensorManager.cpp
11
12LOCAL_SHARED_LIBRARIES := \
13 libcutils \
14 libutils \
15 libbinder \
16 libhardware \
17 libhardware_legacy
18
19LOCAL_MODULE:= libgui
20
21ifeq ($(TARGET_SIMULATOR),true)
22 LOCAL_LDLIBS += -lpthread
23endif
24
25include $(BUILD_SHARED_LIBRARY)