android_frameworks_base/libs/hwui/hwui_static_deps.mk
Miao Wang 629fd3d48b Remove uncessary dependency of libhwui
- libRS.so is not directly used. It is accessed by libRScpp.so.

Test: mm, and boot-up test on sailfish
Change-Id: I5742d2ee3b34ef09bcb997524408affce1ace8fd
2017-01-31 17:26:52 -08:00

34 lines
921 B
Makefile

###############################################################################
#
#
# This file contains the shared and static dependencies needed by any target
# that attempts to statically link HWUI (i.e. libhwui_static build target). This
# file should be included by any target that lists libhwui_static as a
# dependency.
#
# This is a workaround for the fact that the build system does not add these
# transitive dependencies when it attempts to link libhwui_static into another
# library.
#
###############################################################################
LOCAL_SHARED_LIBRARIES += \
liblog \
libcutils \
libutils \
libEGL \
libGLESv2 \
libvulkan \
libskia \
libui \
libgui \
libprotobuf-cpp-lite \
libharfbuzz_ng \
libft2 \
libminikin \
libandroidfw
ifneq (false,$(ANDROID_ENABLE_RENDERSCRIPT))
LOCAL_SHARED_LIBRARIES += libRScpp
endif