Set apex_available property
The marked library(ies) were available to the APEXes via the hand-written whitelist in build/soong/apex/apex.go. Trying to remove the whitelist by adding apex_available property to the Android.bp of the libraries. Bug: 150999716 Test: m Change-Id: I54db09314c7236a227f04281a439c1d5dc56ef2c
This commit is contained in:
parent
8d24215d33
commit
a2606921b2
|
@ -51,6 +51,12 @@ cc_library {
|
|||
enabled: false,
|
||||
},
|
||||
},
|
||||
|
||||
apex_available: [
|
||||
"//apex_available:platform",
|
||||
"com.android.art.debug",
|
||||
"com.android.art.release",
|
||||
],
|
||||
}
|
||||
|
||||
// Tests
|
||||
|
|
|
@ -135,6 +135,12 @@ cc_library {
|
|||
exclude_shared_libs: ["libdexfile_support"],
|
||||
},
|
||||
},
|
||||
|
||||
apex_available: [
|
||||
"//apex_available:platform",
|
||||
"com.android.art.debug",
|
||||
"com.android.art.release",
|
||||
],
|
||||
}
|
||||
|
||||
// Static library without DEX support to avoid dependencies on the ART APEX.
|
||||
|
|
|
@ -109,6 +109,12 @@ cc_library {
|
|||
enabled: true,
|
||||
},
|
||||
},
|
||||
|
||||
apex_available: [
|
||||
"//apex_available:platform",
|
||||
"com.android.art.debug",
|
||||
"com.android.art.release",
|
||||
],
|
||||
}
|
||||
|
||||
// Tests.
|
||||
|
|
Loading…
Reference in New Issue