blob: dca78b38e942f15aae689e56016426a83b146bc2 [file] [log] [blame]
Derek Sollenberger991da312016-02-11 12:13:07 -05001###############################################################################
2#
3#
4# This file contains the shared and static dependencies needed by any target
5# that attempts to statically link HWUI (i.e. libhwui_static build target). This
6# file should be included by any target that lists libhwui_static as a
7# dependency.
8#
9# This is a workaround for the fact that the build system does not add these
10# transitive dependencies when it attempts to link libhwui_static into another
11# library.
12#
13###############################################################################
14
15LOCAL_SHARED_LIBRARIES += \
16 liblog \
17 libcutils \
18 libutils \
19 libEGL \
20 libGLESv2 \
21 libskia \
22 libui \
23 libgui \
sergeyvdccca442016-03-21 15:38:21 -070024 libprotobuf-cpp-lite \
25 libharfbuzz_ng \
26 libft2 \
John Reck03b5d502016-11-03 16:16:47 -070027 libminikin \
28 libandroidfw
Derek Sollenberger991da312016-02-11 12:13:07 -050029
30ifneq (false,$(ANDROID_ENABLE_RENDERSCRIPT))
31 LOCAL_SHARED_LIBRARIES += libRS libRScpp
sergeyvdccca442016-03-21 15:38:21 -070032endif