Android.mk revision 35cf58ab283a784b0dbdeeb8fa5a620a34030b35
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
4
5# Only build libhwui when USE_OPENGL_RENDERER is
6# defined in the current device/board configuration
7ifeq ($(USE_OPENGL_RENDERER),true)
8    LOCAL_MODULE_CLASS := SHARED_LIBRARIES
9    LOCAL_MODULE := libhwui
10    LOCAL_MODULE_TAGS := optional
11
12    include $(LOCAL_PATH)/Android.common.mk
13
14    include $(BUILD_SHARED_LIBRARY)
15
16    include $(call all-makefiles-under,$(LOCAL_PATH))
17endif
18