The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | clz.cpp.arm \ |
| 6 | DisplayHardware/DisplayHardware.cpp \ |
| 7 | DisplayHardware/DisplayHardwareBase.cpp \ |
| 8 | GPUHardware/GPUHardware.cpp \ |
| 9 | BootAnimation.cpp \ |
| 10 | BlurFilter.cpp.arm \ |
| 11 | CPUGauge.cpp \ |
| 12 | Layer.cpp \ |
| 13 | LayerBase.cpp \ |
| 14 | LayerBuffer.cpp \ |
| 15 | LayerBlur.cpp \ |
| 16 | LayerBitmap.cpp \ |
| 17 | LayerDim.cpp \ |
The Android Open Source Project | d24b818 | 2009-02-10 15:44:00 -0800 | [diff] [blame^] | 18 | LayerOrientationAnim.cpp \ |
The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 19 | LayerScreenshot.cpp \ |
The Android Open Source Project | d24b818 | 2009-02-10 15:44:00 -0800 | [diff] [blame^] | 20 | OrientationAnimation.cpp \ |
The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 21 | RFBServer.cpp \ |
| 22 | SurfaceFlinger.cpp \ |
| 23 | Tokenizer.cpp \ |
| 24 | Transform.cpp \ |
| 25 | VRamHeap.cpp |
| 26 | |
| 27 | |
| 28 | # need "-lrt" on Linux simulator to pick up clock_gettime |
| 29 | ifeq ($(TARGET_SIMULATOR),true) |
| 30 | ifeq ($(HOST_OS),linux) |
| 31 | LOCAL_LDLIBS += -lrt |
| 32 | endif |
| 33 | endif |
| 34 | |
| 35 | LOCAL_SHARED_LIBRARIES := \ |
The Android Open Source Project | f013e1a | 2008-12-17 18:05:43 -0800 | [diff] [blame] | 36 | libhardware \ |
The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 37 | libutils \ |
| 38 | libcutils \ |
| 39 | libui \ |
| 40 | libcorecg \ |
| 41 | libsgl \ |
| 42 | libpixelflinger \ |
The Android Open Source Project | d24b818 | 2009-02-10 15:44:00 -0800 | [diff] [blame^] | 43 | libEGL \ |
| 44 | libGLESv1_CM |
The Android Open Source Project | 54b6cfa | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 45 | |
| 46 | LOCAL_C_INCLUDES := \ |
| 47 | $(call include-path-for, corecg graphics) |
| 48 | |
| 49 | LOCAL_MODULE:= libsurfaceflinger |
| 50 | |
| 51 | include $(BUILD_SHARED_LIBRARY) |