The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 5 | Layer.cpp \ |
| 6 | LayerBase.cpp \ |
| 7 | LayerDim.cpp \ |
Mathias Agopian | f171ab6 | 2011-10-13 16:02:48 -0700 | [diff] [blame] | 8 | LayerScreenshot.cpp \ |
Mathias Agopian | 8afb7e3 | 2011-08-15 20:44:40 -0700 | [diff] [blame] | 9 | DdmConnection.cpp \ |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 10 | DisplayHardware/DisplayHardware.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 11 | DisplayHardware/DisplayHardwareBase.cpp \ |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 12 | DisplayHardware/HWComposer.cpp \ |
| 13 | GLExtensions.cpp \ |
| 14 | MessageQueue.cpp \ |
| 15 | SurfaceFlinger.cpp \ |
| 16 | SurfaceTextureLayer.cpp \ |
| 17 | Transform.cpp \ |
| 18 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 20 | LOCAL_CFLAGS:= -DLOG_TAG=\"SurfaceFlinger\" |
| 21 | LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 22 | |
Mathias Agopian | a8f3e4e | 2010-06-30 15:43:47 -0700 | [diff] [blame] | 23 | ifeq ($(TARGET_BOARD_PLATFORM), omap3) |
Mathias Agopian | a5529c8 | 2010-12-07 19:38:17 -0800 | [diff] [blame] | 24 | LOCAL_CFLAGS += -DNO_RGBX_8888 |
Mathias Agopian | a8f3e4e | 2010-06-30 15:43:47 -0700 | [diff] [blame] | 25 | endif |
Mathias Agopian | 57bf9e7 | 2011-10-07 15:42:53 -0700 | [diff] [blame] | 26 | ifeq ($(TARGET_BOARD_PLATFORM), omap4) |
| 27 | LOCAL_CFLAGS += -DHAS_CONTEXT_PRIORITY |
| 28 | endif |
Mathias Agopian | 6722681 | 2010-10-11 17:54:43 -0700 | [diff] [blame] | 29 | ifeq ($(TARGET_BOARD_PLATFORM), s5pc110) |
Jamie Gennis | cb6c755 | 2011-07-30 15:06:10 -0700 | [diff] [blame] | 30 | LOCAL_CFLAGS += -DHAS_CONTEXT_PRIORITY -DNEVER_DEFAULT_TO_ASYNC_MODE |
Mathias Agopian | 6722681 | 2010-10-11 17:54:43 -0700 | [diff] [blame] | 31 | endif |
| 32 | |
Mathias Agopian | a8f3e4e | 2010-06-30 15:43:47 -0700 | [diff] [blame] | 33 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | LOCAL_SHARED_LIBRARIES := \ |
Mathias Agopian | af54ab9 | 2009-07-02 19:04:39 -0700 | [diff] [blame] | 35 | libcutils \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 36 | libhardware \ |
| 37 | libutils \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | libEGL \ |
Mathias Agopian | af54ab9 | 2009-07-02 19:04:39 -0700 | [diff] [blame] | 39 | libGLESv1_CM \ |
| 40 | libbinder \ |
Mathias Agopian | 9cce325 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 41 | libui \ |
Mathias Agopian | d87f162 | 2011-03-25 18:42:40 -0700 | [diff] [blame] | 42 | libgui |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 43 | |
Mathias Agopian | 8afb7e3 | 2011-08-15 20:44:40 -0700 | [diff] [blame] | 44 | # this is only needed for DDMS debugging |
| 45 | LOCAL_SHARED_LIBRARIES += libdvm libandroid_runtime |
| 46 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | LOCAL_C_INCLUDES := \ |
| 48 | $(call include-path-for, corecg graphics) |
| 49 | |
Mathias Agopian | 5911aa9 | 2009-06-24 16:55:59 -0700 | [diff] [blame] | 50 | LOCAL_C_INCLUDES += hardware/libhardware/modules/gralloc |
| 51 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 52 | LOCAL_MODULE:= libsurfaceflinger |
| 53 | |
| 54 | include $(BUILD_SHARED_LIBRARY) |