blob: 281f9a57152070fae31bf2c77b048fbce328e165 [file] [log] [blame]
Romain Guye4d01122010-06-16 18:44:05 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
Romain Guy16393512010-08-08 00:14:31 -07004# Only build libhwui when USE_OPENGL_RENDERER is
5# defined in the current device/board configuration
6ifeq ($(USE_OPENGL_RENDERER),true)
7 LOCAL_SRC_FILES:= \
Romain Guy6e200402013-03-08 11:28:22 -08008 utils/Blur.cpp \
Romain Guy8550c4c2010-10-08 15:49:53 -07009 utils/SortedListImpl.cpp \
Romain Guy5dc7fa72013-03-11 20:48:31 -070010 thread/TaskManager.cpp \
Romain Guy9f5dab32012-09-04 12:55:44 -070011 font/CacheTexture.cpp \
12 font/Font.cpp \
Romain Guy16393512010-08-08 00:14:31 -070013 FontRenderer.cpp \
Romain Guyb45c0c92010-08-26 20:35:23 -070014 GammaFontRenderer.cpp \
Chet Haasedd78cca2010-10-22 18:59:26 -070015 Caches.cpp \
Chris Craik0776a602013-02-14 15:36:01 -080016 DisplayList.cpp \
Chris Craikc3566d02013-02-04 16:16:33 -080017 DeferredDisplayList.cpp \
Chet Haase9c1e23b2011-03-24 10:51:31 -070018 DisplayListLogBuffer.cpp \
Romain Guy03750a02010-10-18 14:06:08 -070019 DisplayListRenderer.cpp \
Romain Guy211efea2012-07-31 21:16:07 -070020 Dither.cpp \
Romain Guy3bbacf22013-02-06 16:51:04 -080021 Extensions.cpp \
Romain Guy03750a02010-10-18 14:06:08 -070022 FboCache.cpp \
Romain Guy16393512010-08-08 00:14:31 -070023 GradientCache.cpp \
Chet Haased15ebf22012-09-05 11:40:29 -070024 Layer.cpp \
Romain Guy16393512010-08-08 00:14:31 -070025 LayerCache.cpp \
Romain Guy6c319ca2011-01-11 14:29:25 -080026 LayerRenderer.cpp \
Romain Guy16393512010-08-08 00:14:31 -070027 Matrix.cpp \
28 OpenGLRenderer.cpp \
29 Patch.cpp \
30 PatchCache.cpp \
31 PathCache.cpp \
Chris Craik65cd6122012-12-10 17:56:27 -080032 PathTessellator.cpp \
Romain Guycf51a412013-04-08 19:40:31 -070033 PixelBuffer.cpp \
Romain Guy16393512010-08-08 00:14:31 -070034 Program.cpp \
35 ProgramCache.cpp \
Romain Guy8d4aeb72013-02-12 16:08:55 -080036 RenderBufferCache.cpp \
Chet Haase5c13d892010-10-08 08:37:55 -070037 ResourceCache.cpp \
Romain Guy16393512010-08-08 00:14:31 -070038 SkiaColorFilter.cpp \
39 SkiaShader.cpp \
Romain Guyada4d532012-02-02 17:31:16 -080040 Snapshot.cpp \
Romain Guy0baaac52012-08-31 20:31:01 -070041 Stencil.cpp \
Romain Guy1e45aae2010-08-13 19:39:53 -070042 TextureCache.cpp \
43 TextDropShadowCache.cpp
Chris Craik710f46d2012-09-17 17:25:49 -070044
Chris Craikf2d8ccc2013-02-13 16:14:17 -080045 intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,libRS,TARGET,)
46
Romain Guy16393512010-08-08 00:14:31 -070047 LOCAL_C_INCLUDES += \
48 $(JNI_H_INCLUDE) \
49 $(LOCAL_PATH)/../../include/utils \
50 external/skia/include/core \
51 external/skia/include/effects \
52 external/skia/include/images \
Derek Sollenbergerca79cf62012-08-14 16:44:52 -040053 external/skia/src/core \
Romain Guy16393512010-08-08 00:14:31 -070054 external/skia/src/ports \
Dan Morrille4d9a012013-03-28 18:10:43 -070055 external/skia/include/utils
Romain Guy85bf02f2010-06-22 13:11:24 -070056
Romain Guy9c4b79a2011-11-10 19:23:58 -080057 LOCAL_CFLAGS += -DUSE_OPENGL_RENDERER -DGL_GLEXT_PROTOTYPES
Romain Guy16393512010-08-08 00:14:31 -070058 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
Ying Wang28af35e2013-04-09 23:21:42 -070059 LOCAL_SHARED_LIBRARIES := liblog libcutils libutils libGLESv2 libskia libui
Romain Guy16393512010-08-08 00:14:31 -070060 LOCAL_MODULE := libhwui
61 LOCAL_MODULE_TAGS := optional
Romain Guy8a4ac612012-07-17 17:32:48 -070062
Romain Guy09d36362013-04-16 11:30:05 -070063 ifneq (false,$(ANDROID_ENABLE_RENDERSCRIPT))
64 LOCAL_CFLAGS += -DANDROID_ENABLE_RENDERSCRIPT
65 LOCAL_SHARED_LIBRARIES += libRS libRScpp
66 LOCAL_C_INCLUDES += \
67 $(intermediates) \
68 frameworks/rs/cpp \
69 frameworks/rs
70 endif
Dan Morrille4d9a012013-03-28 18:10:43 -070071
Romain Guy8a4ac612012-07-17 17:32:48 -070072 ifndef HWUI_COMPILE_SYMBOLS
73 LOCAL_CFLAGS += -fvisibility=hidden
74 endif
75
76 ifdef HWUI_COMPILE_FOR_PERF
77 LOCAL_CFLAGS += -fno-omit-frame-pointer -marm -mapcs
78 endif
79
Romain Guy16393512010-08-08 00:14:31 -070080 include $(BUILD_SHARED_LIBRARY)
Romain Guye4d01122010-06-16 18:44:05 -070081
Chris Craikf2d8ccc2013-02-13 16:14:17 -080082 include $(call all-makefiles-under,$(LOCAL_PATH))
Romain Guy16393512010-08-08 00:14:31 -070083endif