Home | History | Annotate | Download | only in libpixelflinger
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 #
      5 # C/C++ and ARMv5 objects
      6 #
      7 
      8 include $(CLEAR_VARS)
      9 PIXELFLINGER_SRC_FILES:= \
     10 	codeflinger/ARMAssemblerInterface.cpp \
     11 	codeflinger/ARMAssemblerProxy.cpp \
     12 	codeflinger/CodeCache.cpp \
     13 	codeflinger/GGLAssembler.cpp \
     14 	codeflinger/load_store.cpp \
     15 	codeflinger/blending.cpp \
     16 	codeflinger/texturing.cpp \
     17 	fixed.cpp.arm \
     18 	picker.cpp.arm \
     19 	pixelflinger.cpp.arm \
     20 	trap.cpp.arm \
     21 	scanline.cpp.arm \
     22 	format.cpp \
     23 	clear.cpp \
     24 	raster.cpp \
     25 	buffer.cpp
     26 
     27 PIXELFLINGER_CFLAGS := -fstrict-aliasing -fomit-frame-pointer
     28 
     29 PIXELFLINGER_SRC_FILES_arm := \
     30 	codeflinger/ARMAssembler.cpp \
     31 	codeflinger/disassem.c \
     32 	col32cb16blend.S \
     33 	t32cb16blend.S \
     34 
     35 ifeq ($(ARCH_ARM_HAVE_NEON),true)
     36 PIXELFLINGER_SRC_FILES_arm += col32cb16blend_neon.S
     37 PIXELFLINGER_CFLAGS_arm += -D__ARM_HAVE_NEON
     38 endif
     39 
     40 PIXELFLINGER_SRC_FILES_arm64 := \
     41 	codeflinger/Arm64Assembler.cpp \
     42 	codeflinger/Arm64Disassembler.cpp \
     43 	arch-arm64/col32cb16blend.S \
     44 	arch-arm64/t32cb16blend.S \
     45 
     46 ifndef ARCH_MIPS_REV6
     47 PIXELFLINGER_SRC_FILES_mips := \
     48 	codeflinger/MIPSAssembler.cpp \
     49 	codeflinger/mips_disassem.c \
     50 	arch-mips/t32cb16blend.S \
     51 
     52 endif
     53 
     54 PIXELFLINGER_SRC_FILES_mips64 := \
     55         codeflinger/MIPSAssembler.cpp \
     56 	codeflinger/MIPS64Assembler.cpp \
     57 	codeflinger/mips64_disassem.c \
     58 	arch-mips64/col32cb16blend.S \
     59 	arch-mips64/t32cb16blend.S \
     60 
     61 #
     62 # Shared library
     63 #
     64 
     65 LOCAL_MODULE:= libpixelflinger
     66 LOCAL_SRC_FILES := $(PIXELFLINGER_SRC_FILES)
     67 LOCAL_SRC_FILES_arm := $(PIXELFLINGER_SRC_FILES_arm)
     68 LOCAL_SRC_FILES_arm64 := $(PIXELFLINGER_SRC_FILES_arm64)
     69 LOCAL_SRC_FILES_mips := $(PIXELFLINGER_SRC_FILES_mips)
     70 LOCAL_SRC_FILES_mips64 := $(PIXELFLINGER_SRC_FILES_mips64)
     71 LOCAL_CFLAGS := $(PIXELFLINGER_CFLAGS)
     72 LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
     73 LOCAL_C_INCLUDES += $(LOCAL_EXPORT_C_INCLUDE_DIRS) \
     74 		    external/safe-iop/include
     75 LOCAL_SHARED_LIBRARIES := libcutils liblog libutils
     76 
     77 include $(BUILD_SHARED_LIBRARY)
     78 
     79 include $(call all-makefiles-under,$(LOCAL_PATH))
     80