From 1d15969595a86febfa2e4fe30261e6fd876fb50d Mon Sep 17 00:00:00 2001 From: Spandan Das Date: Thu, 4 Jan 2024 18:26:52 +0000 Subject: [PATCH] Drop runtime apex deps from implicit baselineApexAvailable map The availability of these soong modules to com.android.runtime has been made explicit in Android.bp files One exception is libz. Making apex_available explicit has some subtle implications on stub/impl selection which breaks coverage builds. Bug: 281077552 Test: m nothing Change-Id: I6db7db6dfcb5c468ca68c3e166fe79b9356c4fa8 --- apex/apex.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/apex/apex.go b/apex/apex.go index b37c49579..586990e85 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -2878,22 +2878,7 @@ func makeApexAvailableBaseline() map[string][]string { // Module separator // m["com.android.runtime"] = []string{ - "libdebuggerd", - "libdebuggerd_common_headers", - "libdebuggerd_handler_core", - "libdl_static", - "libjemalloc5", - "liblinker_main", - "liblinker_malloc", - "liblzma", - "libprocinfo", - "libpropertyinfoparser", - "libscudo", - "libsystemproperties", - "libtombstoned_client_static", - "libunwindstack", "libz", - "libziparchive", } return m }