| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) | 
 | 2 | include $(CLEAR_VARS) | 
 | 3 |  | 
 | 4 | # | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 5 | # C/C++ and ARMv5 objects | 
 | 6 | # | 
 | 7 |  | 
 | 8 | include $(CLEAR_VARS) | 
 | 9 | PIXELFLINGER_SRC_FILES:= \ | 
| Colin Cross | f88fb1f | 2014-02-11 13:32:56 -0800 | [diff] [blame] | 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 \ | 
| Mathias Agopian | 9857d99 | 2013-04-01 15:17:55 -0700 | [diff] [blame] | 17 | 	codeflinger/tinyutils/SharedBuffer.cpp \ | 
 | 18 | 	codeflinger/tinyutils/VectorImpl.cpp \ | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 19 | 	fixed.cpp.arm \ | 
 | 20 | 	picker.cpp.arm \ | 
 | 21 | 	pixelflinger.cpp.arm \ | 
 | 22 | 	trap.cpp.arm \ | 
 | 23 | 	scanline.cpp.arm \ | 
 | 24 | 	format.cpp \ | 
 | 25 | 	clear.cpp \ | 
 | 26 | 	raster.cpp \ | 
 | 27 | 	buffer.cpp | 
 | 28 |  | 
| Colin Cross | f88fb1f | 2014-02-11 13:32:56 -0800 | [diff] [blame] | 29 | PIXELFLINGER_CFLAGS := -fstrict-aliasing -fomit-frame-pointer | 
 | 30 |  | 
 | 31 | PIXELFLINGER_SRC_FILES_arm := \ | 
 | 32 | 	codeflinger/ARMAssembler.cpp \ | 
 | 33 | 	codeflinger/disassem.c \ | 
 | 34 | 	col32cb16blend.S \ | 
 | 35 | 	t32cb16blend.S \ | 
 | 36 |  | 
| Kévin PETIT | d82b2a3 | 2014-03-06 15:43:58 +0000 | [diff] [blame] | 37 | ifeq ($(ARCH_ARM_HAVE_NEON),true) | 
| Colin Cross | f88fb1f | 2014-02-11 13:32:56 -0800 | [diff] [blame] | 38 | PIXELFLINGER_SRC_FILES_arm += col32cb16blend_neon.S | 
| Elliott Hughes | 053ca3f | 2014-12-03 17:15:14 -0800 | [diff] [blame] | 39 | PIXELFLINGER_CFLAGS_arm += -D__ARM_HAVE_NEON | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 40 | endif | 
 | 41 |  | 
| Colin Cross | f88fb1f | 2014-02-11 13:32:56 -0800 | [diff] [blame] | 42 | PIXELFLINGER_SRC_FILES_arm64 := \ | 
 | 43 | 	codeflinger/Arm64Assembler.cpp \ | 
 | 44 | 	codeflinger/Arm64Disassembler.cpp \ | 
 | 45 | 	arch-arm64/col32cb16blend.S \ | 
 | 46 | 	arch-arm64/t32cb16blend.S \ | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 47 |  | 
| Duane Sand | 734f50c | 2014-06-28 18:55:26 -0700 | [diff] [blame] | 48 | ifndef ARCH_MIPS_REV6 | 
| Colin Cross | f88fb1f | 2014-02-11 13:32:56 -0800 | [diff] [blame] | 49 | PIXELFLINGER_SRC_FILES_mips := \ | 
 | 50 | 	codeflinger/MIPSAssembler.cpp \ | 
 | 51 | 	codeflinger/mips_disassem.c \ | 
 | 52 | 	arch-mips/t32cb16blend.S \ | 
| Ashok Bhat | 658f89d | 2013-02-28 18:32:03 +0000 | [diff] [blame] | 53 |  | 
| Duane Sand | 734f50c | 2014-06-28 18:55:26 -0700 | [diff] [blame] | 54 | endif | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 55 | # | 
 | 56 | # Shared library | 
 | 57 | # | 
 | 58 |  | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 59 | LOCAL_MODULE:= libpixelflinger | 
 | 60 | LOCAL_SRC_FILES := $(PIXELFLINGER_SRC_FILES) | 
| Colin Cross | f88fb1f | 2014-02-11 13:32:56 -0800 | [diff] [blame] | 61 | LOCAL_SRC_FILES_arm := $(PIXELFLINGER_SRC_FILES_arm) | 
 | 62 | LOCAL_SRC_FILES_arm64 := $(PIXELFLINGER_SRC_FILES_arm64) | 
 | 63 | LOCAL_SRC_FILES_mips := $(PIXELFLINGER_SRC_FILES_mips) | 
| Brian Swetland | 5a32695 | 2008-12-23 22:29:27 -0800 | [diff] [blame] | 64 | LOCAL_CFLAGS := $(PIXELFLINGER_CFLAGS) | 
| Greg Hackmann | 38eb58d | 2015-03-12 11:16:50 -0700 | [diff] [blame] | 65 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include | 
 | 66 | LOCAL_C_INCLUDES += $(LOCAL_EXPORT_C_INCLUDE_DIRS) | 
| Colin Cross | f88fb1f | 2014-02-11 13:32:56 -0800 | [diff] [blame] | 67 | LOCAL_SHARED_LIBRARIES := libcutils liblog | 
| Brian Swetland | 5a32695 | 2008-12-23 22:29:27 -0800 | [diff] [blame] | 68 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 69 | # Really this should go away entirely or at least not depend on | 
 | 70 | # libhardware, but this at least gets us built. | 
 | 71 | LOCAL_SHARED_LIBRARIES += libhardware_legacy | 
| Brian Swetland | 5a32695 | 2008-12-23 22:29:27 -0800 | [diff] [blame] | 72 | LOCAL_CFLAGS += -DWITH_LIB_HARDWARE | 
| Chih-Hung Hsieh | 60c57da | 2014-10-06 13:27:20 -0700 | [diff] [blame] | 73 | # t32cb16blend.S does not compile with Clang. | 
 | 74 | LOCAL_CLANG_ASFLAGS_arm += -no-integrated-as | 
 | 75 | # arch-arm64/col32cb16blend.S does not compile with Clang. | 
 | 76 | LOCAL_CLANG_ASFLAGS_arm64 += -no-integrated-as | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 77 | include $(BUILD_SHARED_LIBRARY) | 
| The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 78 |  | 
| The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 79 | include $(call all-makefiles-under,$(LOCAL_PATH)) |