From 31ab19f78bbe50cbafbc18656938e399e9da6d4c Mon Sep 17 00:00:00 2001 From: Inseob Kim Date: Tue, 10 Sep 2019 14:56:19 +0900 Subject: [PATCH] Remove static vndk dep from vendor modules Instead, vendor modules should link against shared vndk. Bug: 137178339 Test: mma Change-Id: Idfce608a3d62de7c4c0e6b02b7cbd80de0a5207f --- automotive/vehicle/2.0/default/Android.bp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automotive/vehicle/2.0/default/Android.bp b/automotive/vehicle/2.0/default/Android.bp index 3fd0539628..ed09859443 100644 --- a/automotive/vehicle/2.0/default/Android.bp +++ b/automotive/vehicle/2.0/default/Android.bp @@ -71,10 +71,10 @@ cc_library_static { whole_static_libs: ["android.hardware.automotive.vehicle@2.0-manager-lib"], shared_libs: [ "libbase", + "libjsoncpp", "libprotobuf-cpp-lite", ], static_libs: [ - "libjsoncpp", "libqemu_pipe", "android.hardware.automotive.vehicle@2.0-libproto-native", ], @@ -106,13 +106,13 @@ cc_binary { srcs: ["VehicleService.cpp"], shared_libs: [ "libbase", + "libjsoncpp", "libprotobuf-cpp-lite", ], static_libs: [ "android.hardware.automotive.vehicle@2.0-manager-lib", "android.hardware.automotive.vehicle@2.0-default-impl-lib", "android.hardware.automotive.vehicle@2.0-libproto-native", - "libjsoncpp", "libqemu_pipe", ], }