From a602c176db3c5dd18bf9e30db373b90ee41b706e Mon Sep 17 00:00:00 2001 From: Marin Shalamanov Date: Tue, 11 Aug 2020 20:29:00 +0200 Subject: [PATCH] Add dependancy to libbase for libhostgraphics The dependancy is required for the to_string function which is now defined in Rect.cpp. Bug: 161793589 Bug: 160404780 Test: m libhostgraphics Change-Id: Id071c207b5344e36c992f3a095c42a5f135c86d4 --- libs/hostgraphics/Android.bp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/hostgraphics/Android.bp b/libs/hostgraphics/Android.bp index e713b98b867eb..9d83e491fdc1a 100644 --- a/libs/hostgraphics/Android.bp +++ b/libs/hostgraphics/Android.bp @@ -5,6 +5,10 @@ cc_library_host_static { "-Wno-unused-parameter", ], + static_libs: [ + "libbase", + ], + srcs: [ ":libui_host_common", "Fence.cpp", @@ -28,4 +32,4 @@ cc_library_host_static { enabled: true, } }, -} \ No newline at end of file +}