Android.mk revision 8ba32fade11abb73f3fd47ea0953c9528eb5b91f
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5	ISensorEventConnection.cpp \
6	ISensorServer.cpp \
7	ISurfaceTexture.cpp \
8	Sensor.cpp \
9	SensorChannel.cpp \
10	SensorEventQueue.cpp \
11	SensorManager.cpp \
12	SurfaceTexture.cpp \
13	SurfaceTextureClient.cpp
14
15LOCAL_SHARED_LIBRARIES := \
16	libcutils \
17	libutils \
18	libbinder \
19	libhardware \
20	libhardware_legacy \
21	libui \
22	libEGL \
23	libGLESv2 \
24	libsurfaceflinger_client
25
26
27LOCAL_MODULE:= libgui
28
29ifeq ($(TARGET_SIMULATOR),true)
30    LOCAL_LDLIBS += -lpthread
31endif
32
33include $(BUILD_SHARED_LIBRARY)
34