The Android Open Source Project | 9066cfe | 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 \ |
| 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 \ |
| 18 | LayerOrientationAnim.cpp \ |
Mathias Agopian | 3552f53 | 2009-03-27 17:58:20 -0700 | [diff] [blame] | 19 | LayerOrientationAnimRotate.cpp \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | OrientationAnimation.cpp \ |
| 21 | SurfaceFlinger.cpp \ |
| 22 | Tokenizer.cpp \ |
| 23 | Transform.cpp \ |
| 24 | VRamHeap.cpp |
| 25 | |
| 26 | |
| 27 | # need "-lrt" on Linux simulator to pick up clock_gettime |
| 28 | ifeq ($(TARGET_SIMULATOR),true) |
| 29 | ifeq ($(HOST_OS),linux) |
| 30 | LOCAL_LDLIBS += -lrt |
| 31 | endif |
| 32 | endif |
| 33 | |
| 34 | LOCAL_SHARED_LIBRARIES := \ |
| 35 | libhardware \ |
| 36 | libutils \ |
| 37 | libcutils \ |
| 38 | libui \ |
| 39 | libcorecg \ |
| 40 | libsgl \ |
| 41 | libpixelflinger \ |
| 42 | libEGL \ |
| 43 | libGLESv1_CM |
| 44 | |
| 45 | LOCAL_C_INCLUDES := \ |
| 46 | $(call include-path-for, corecg graphics) |
| 47 | |
| 48 | LOCAL_MODULE:= libsurfaceflinger |
| 49 | |
| 50 | include $(BUILD_SHARED_LIBRARY) |