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:= \ |
| 5 | clz.cpp.arm \ |
| 6 | DisplayHardware/DisplayHardware.cpp \ |
| 7 | DisplayHardware/DisplayHardwareBase.cpp \ |
| 8 | GPUHardware/GPUHardware.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 9 | BlurFilter.cpp.arm \ |
| 10 | CPUGauge.cpp \ |
| 11 | Layer.cpp \ |
| 12 | LayerBase.cpp \ |
| 13 | LayerBuffer.cpp \ |
| 14 | LayerBlur.cpp \ |
| 15 | LayerBitmap.cpp \ |
| 16 | LayerDim.cpp \ |
| 17 | LayerOrientationAnim.cpp \ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 18 | OrientationAnimation.cpp \ |
| 19 | SurfaceFlinger.cpp \ |
| 20 | Tokenizer.cpp \ |
| 21 | Transform.cpp \ |
| 22 | VRamHeap.cpp |
| 23 | |
| 24 | |
| 25 | # need "-lrt" on Linux simulator to pick up clock_gettime |
| 26 | ifeq ($(TARGET_SIMULATOR),true) |
| 27 | ifeq ($(HOST_OS),linux) |
| 28 | LOCAL_LDLIBS += -lrt |
| 29 | endif |
| 30 | endif |
| 31 | |
| 32 | LOCAL_SHARED_LIBRARIES := \ |
| 33 | libhardware \ |
| 34 | libutils \ |
| 35 | libcutils \ |
| 36 | libui \ |
| 37 | libcorecg \ |
| 38 | libsgl \ |
| 39 | libpixelflinger \ |
| 40 | libEGL \ |
| 41 | libGLESv1_CM |
| 42 | |
| 43 | LOCAL_C_INCLUDES := \ |
| 44 | $(call include-path-for, corecg graphics) |
| 45 | |
| 46 | LOCAL_MODULE:= libsurfaceflinger |
| 47 | |
| 48 | include $(BUILD_SHARED_LIBRARY) |