blob: 58bb0d31f4e2be81026af6be89369ea42d118404 [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 \
Jamie Gennis8ba32fa2010-12-20 11:27:26 -08007 ISurfaceTexture.cpp \
Mathias Agopian589ce852010-07-13 22:21:56 -07008 Sensor.cpp \
9 SensorChannel.cpp \
10 SensorEventQueue.cpp \
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080011 SensorManager.cpp \
12 SurfaceTexture.cpp \
Mathias Agopiand87f1622011-03-25 18:42:40 -070013 SurfaceTextureClient.cpp \
14 ISurfaceComposer.cpp \
15 ISurface.cpp \
16 ISurfaceComposerClient.cpp \
17 IGraphicBufferAlloc.cpp \
18 LayerState.cpp \
19 SharedBufferStack.cpp \
20 Surface.cpp \
21 SurfaceComposerClient.cpp \
Mathias Agopian589ce852010-07-13 22:21:56 -070022
23LOCAL_SHARED_LIBRARIES := \
24 libcutils \
25 libutils \
26 libbinder \
27 libhardware \
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080028 libhardware_legacy \
29 libui \
30 libEGL \
31 libGLESv2 \
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080032
Mathias Agopian589ce852010-07-13 22:21:56 -070033
34LOCAL_MODULE:= libgui
35
36ifeq ($(TARGET_SIMULATOR),true)
37 LOCAL_LDLIBS += -lpthread
38endif
39
40include $(BUILD_SHARED_LIBRARY)