libplatformprotos is really really unhappy if it gets loaded twice into the same process which trivially happens if it's a static library. Switch it to a shared library instead to fix this. Change-Id: I90297d076d0739bab683fbd9607d7fc0884a002d Fixes: 36272398 Test: Ran hwui_unit_test, didn't crash
32 lines
869 B
Makefile
32 lines
869 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-full \
|
|
libharfbuzz_ng \
|
|
libft2 \
|
|
libminikin \
|
|
libandroidfw \
|
|
libRScpp \
|
|
libplatformprotos
|