Initial CL: https://googleplex-android-review.git.corp.google.com/#/c/886854/ Change-Id: I9dfd85fe1d2a2c44f4360c8a29fd58d80e6f31c8
32 lines
892 B
Makefile
32 lines
892 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 \
|
|
libskia \
|
|
libui \
|
|
libgui \
|
|
libprotobuf-cpp-lite \
|
|
libharfbuzz_ng \
|
|
libft2 \
|
|
libminikin
|
|
|
|
ifneq (false,$(ANDROID_ENABLE_RENDERSCRIPT))
|
|
LOCAL_SHARED_LIBRARIES += libRS libRScpp
|
|
endif
|