blob: c3a07a1a111ff7cb4dba4bde43bd73a9aabfce01 [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 Guy8550c4c2010-10-08 15:49:53 -07008 utils/SortedListImpl.cpp \
Romain Guy16393512010-08-08 00:14:31 -07009 FontRenderer.cpp \
Romain Guyb45c0c92010-08-26 20:35:23 -070010 GammaFontRenderer.cpp \
Chet Haasedd78cca2010-10-22 18:59:26 -070011 Caches.cpp \
Chet Haase9c1e23b2011-03-24 10:51:31 -070012 DisplayListLogBuffer.cpp \
Romain Guy03750a02010-10-18 14:06:08 -070013 DisplayListRenderer.cpp \
Romain Guy211efea2012-07-31 21:16:07 -070014 Dither.cpp \
Romain Guy03750a02010-10-18 14:06:08 -070015 FboCache.cpp \
Romain Guy16393512010-08-08 00:14:31 -070016 GradientCache.cpp \
17 LayerCache.cpp \
Romain Guy6c319ca2011-01-11 14:29:25 -080018 LayerRenderer.cpp \
Romain Guy16393512010-08-08 00:14:31 -070019 Matrix.cpp \
20 OpenGLRenderer.cpp \
21 Patch.cpp \
22 PatchCache.cpp \
23 PathCache.cpp \
24 Program.cpp \
25 ProgramCache.cpp \
Chet Haase5c13d892010-10-08 08:37:55 -070026 ResourceCache.cpp \
Romain Guy01d58e42011-01-19 21:54:02 -080027 ShapeCache.cpp \
Romain Guy16393512010-08-08 00:14:31 -070028 SkiaColorFilter.cpp \
29 SkiaShader.cpp \
Romain Guyada4d532012-02-02 17:31:16 -080030 Snapshot.cpp \
Romain Guy0baaac52012-08-31 20:31:01 -070031 Stencil.cpp \
Romain Guy1e45aae2010-08-13 19:39:53 -070032 TextureCache.cpp \
33 TextDropShadowCache.cpp
Romain Guy16393512010-08-08 00:14:31 -070034
35 LOCAL_C_INCLUDES += \
36 $(JNI_H_INCLUDE) \
37 $(LOCAL_PATH)/../../include/utils \
38 external/skia/include/core \
39 external/skia/include/effects \
40 external/skia/include/images \
41 external/skia/src/ports \
42 external/skia/include/utils
Romain Guy85bf02f2010-06-22 13:11:24 -070043
Romain Guy9c4b79a2011-11-10 19:23:58 -080044 LOCAL_CFLAGS += -DUSE_OPENGL_RENDERER -DGL_GLEXT_PROTOTYPES
Romain Guy16393512010-08-08 00:14:31 -070045 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
Romain Guy5b3b3522010-10-27 18:57:51 -070046 LOCAL_SHARED_LIBRARIES := libcutils libutils libGLESv2 libskia libui
Romain Guy16393512010-08-08 00:14:31 -070047 LOCAL_MODULE := libhwui
48 LOCAL_MODULE_TAGS := optional
Romain Guy8a4ac612012-07-17 17:32:48 -070049
50 ifndef HWUI_COMPILE_SYMBOLS
51 LOCAL_CFLAGS += -fvisibility=hidden
52 endif
53
54 ifdef HWUI_COMPILE_FOR_PERF
55 LOCAL_CFLAGS += -fno-omit-frame-pointer -marm -mapcs
56 endif
57
Romain Guy16393512010-08-08 00:14:31 -070058 include $(BUILD_SHARED_LIBRARY)
Romain Guye4d01122010-06-16 18:44:05 -070059
Romain Guy16393512010-08-08 00:14:31 -070060 include $(call all-makefiles-under,$(LOCAL_PATH))
61endif