2019-10-01 01:44:58 +02:00
|
|
|
// Runtime (Bionic) APEX module
|
|
|
|
//
|
|
|
|
// In Q this contained Bionic, ART and Libcore.
|
|
|
|
// It keeps the name /apex/com.android.runtime for app compat reasons.
|
|
|
|
|
|
|
|
android_app_certificate {
|
|
|
|
name: "com.android.runtime.certificate",
|
|
|
|
certificate: "com.android.runtime",
|
|
|
|
}
|
|
|
|
|
|
|
|
apex_key {
|
|
|
|
name: "com.android.runtime.key",
|
|
|
|
public_key: "com.android.runtime.avbpubkey",
|
|
|
|
private_key: "com.android.runtime.pem",
|
|
|
|
}
|
|
|
|
|
|
|
|
apex {
|
|
|
|
name: "com.android.runtime",
|
|
|
|
compile_multilib: "both",
|
|
|
|
manifest: "manifest.json",
|
|
|
|
native_shared_libs: [
|
|
|
|
"libc",
|
|
|
|
"libm",
|
|
|
|
"libdl",
|
2019-11-11 16:33:22 +01:00
|
|
|
"libdl_android",
|
2019-10-01 01:44:58 +02:00
|
|
|
"libc_malloc_debug",
|
|
|
|
"libc_malloc_hooks",
|
|
|
|
],
|
|
|
|
multilib: {
|
|
|
|
both: {
|
2020-03-17 20:32:34 +01:00
|
|
|
binaries: [
|
|
|
|
"crash_dump",
|
|
|
|
"linker",
|
|
|
|
],
|
2019-10-01 01:44:58 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
key: "com.android.runtime.key",
|
|
|
|
certificate: ":com.android.runtime.certificate",
|
|
|
|
}
|