diff options
| author | 2024-01-04 18:26:52 +0000 | |
|---|---|---|
| committer | 2024-01-16 19:25:21 +0000 | |
| commit | 1d15969595a86febfa2e4fe30261e6fd876fb50d (patch) | |
| tree | c0dd68d5f80240a5d0769f4f78bbad92ed2efc3c /apex/apex.go | |
| parent | 1c4cc3d40e0081a065d44b0172e66fb58b1967a1 (diff) | |
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
Diffstat (limited to 'apex/apex.go')
| -rw-r--r-- | apex/apex.go | 15 |
1 files changed, 0 insertions, 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 } |