From 5959c0200ddf1a69c57a8f30bebbe7f13406c849 Mon Sep 17 00:00:00 2001 From: Kiyoung Kim Date: Thu, 21 Sep 2023 10:32:50 +0900 Subject: [PATCH] Move vendor module into base_vendor There is a vendor module android.hidl.memory@1.0-impl.vendor which is defined in the base_system. Based on the definition of base_system.mk and base_vendor.mk, this module is better to be located in the base_vendor.mk. This change moves the module from base_system into base_vendor. Bug: 301344301 Test: Cuttlefish build succeeded Change-Id: I6dba5ec2380028b1b2c629f901db996c518e3f72 --- target/product/base_system.mk | 1 - target/product/base_vendor.mk | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/target/product/base_system.mk b/target/product/base_system.mk index c74d0a332d..f8dbafd6e7 100644 --- a/target/product/base_system.mk +++ b/target/product/base_system.mk @@ -22,7 +22,6 @@ PRODUCT_PACKAGES += \ android.hidl.base-V1.0-java \ android.hidl.manager-V1.0-java \ android.hidl.memory@1.0-impl \ - android.hidl.memory@1.0-impl.vendor \ android.system.suspend-service \ android.test.base \ android.test.mock \ diff --git a/target/product/base_vendor.mk b/target/product/base_vendor.mk index d22f71f6a7..b6e5370a01 100644 --- a/target/product/base_vendor.mk +++ b/target/product/base_vendor.mk @@ -46,6 +46,7 @@ PRODUCT_HOST_PACKAGES += \ # Base modules and settings for the vendor partition. PRODUCT_PACKAGES += \ + android.hidl.memory@1.0-impl.vendor \ com.android.hardware.cas \ boringssl_self_test_vendor \ dumpsys_vendor \