OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / frameworks / base / libs / gui / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2 include $(CLEAR_VARS)
3
4 LOCAL_SRC_FILES:= \
5         ISensorEventConnection.cpp \
6         ISensorServer.cpp \
7         Sensor.cpp \
8         SensorChannel.cpp \
9         SensorEventQueue.cpp \
10         SensorManager.cpp
11
12 LOCAL_SHARED_LIBRARIES := \
13         libcutils \
14         libutils \
15         libbinder \
16         libhardware \
17         libhardware_legacy
18
19 LOCAL_MODULE:= libgui
20
21 ifeq ($(TARGET_SIMULATOR),true)
22     LOCAL_LDLIBS += -lpthread
23 endif
24
25 include $(BUILD_SHARED_LIBRARY)