Mathias Agopian | 589ce85 | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | ISensorEventConnection.cpp \ |
| 6 | ISensorServer.cpp \ |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 7 | ISurfaceTexture.cpp \ |
Mathias Agopian | 589ce85 | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 8 | Sensor.cpp \ |
| 9 | SensorChannel.cpp \ |
| 10 | SensorEventQueue.cpp \ |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 11 | SensorManager.cpp \ |
| 12 | SurfaceTexture.cpp \ |
Mathias Agopian | d87f162 | 2011-03-25 18:42:40 -0700 | [diff] [blame] | 13 | 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 Agopian | 589ce85 | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 22 | |
| 23 | LOCAL_SHARED_LIBRARIES := \ |
| 24 | libcutils \ |
| 25 | libutils \ |
| 26 | libbinder \ |
| 27 | libhardware \ |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 28 | libhardware_legacy \ |
| 29 | libui \ |
| 30 | libEGL \ |
| 31 | libGLESv2 \ |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 32 | |
Mathias Agopian | 589ce85 | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 33 | |
| 34 | LOCAL_MODULE:= libgui |
| 35 | |
| 36 | ifeq ($(TARGET_SIMULATOR),true) |
| 37 | LOCAL_LDLIBS += -lpthread |
| 38 | endif |
| 39 | |
| 40 | include $(BUILD_SHARED_LIBRARY) |
Jamie Gennis | 7fcb077 | 2011-04-26 17:26:37 -0700 | [diff] [blame^] | 41 | |
| 42 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
| 43 | include $(call first-makefiles-under,$(LOCAL_PATH)) |
| 44 | endif |