| 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 \ | 
| Mathias Agopian | d87f162 | 2011-03-25 18:42:40 -0700 | [diff] [blame] | 19 | 	Surface.cpp \ | 
 | 20 | 	SurfaceComposerClient.cpp \ | 
| Mathias Agopian | 589ce85 | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 21 |  | 
 | 22 | LOCAL_SHARED_LIBRARIES := \ | 
 | 23 | 	libcutils \ | 
 | 24 | 	libutils \ | 
 | 25 | 	libbinder \ | 
 | 26 | 	libhardware \ | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 27 | 	libhardware_legacy \ | 
 | 28 | 	libui \ | 
 | 29 | 	libEGL \ | 
 | 30 | 	libGLESv2 \ | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 31 |  | 
| Mathias Agopian | 589ce85 | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 32 |  | 
 | 33 | LOCAL_MODULE:= libgui | 
 | 34 |  | 
| Mathias Agopian | 7c6eba6 | 2011-11-14 19:17:37 -0800 | [diff] [blame] | 35 | ifeq ($(TARGET_BOARD_PLATFORM), tegra) | 
 | 36 | 	LOCAL_CFLAGS += -DALLOW_DEQUEUE_CURRENT_BUFFER | 
 | 37 | endif | 
 | 38 |  | 
| Mathias Agopian | 589ce85 | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 39 | include $(BUILD_SHARED_LIBRARY) | 
| Jamie Gennis | 7fcb077 | 2011-04-26 17:26:37 -0700 | [diff] [blame] | 40 |  | 
 | 41 | ifeq (,$(ONE_SHOT_MAKEFILE)) | 
 | 42 | include $(call first-makefiles-under,$(LOCAL_PATH)) | 
 | 43 | endif |