ea06b0dec2
A future change will introduce a version lock between linker and crash_dump. Move crash_dump into the runtime APEX alongside linker in order to ensure that they will be the same version even if the runtime APEX is updated. Bug: 135772973 Change-Id: I94740f9c45107f08490df639a2e4d589a3044847 Merged-In: I94740f9c45107f08490df639a2e4d589a3044847
39 lines
915 B
Text
39 lines
915 B
Text
// 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",
|
|
"libdl_android",
|
|
"libc_malloc_debug",
|
|
"libc_malloc_hooks",
|
|
],
|
|
multilib: {
|
|
both: {
|
|
binaries: [
|
|
"crash_dump",
|
|
"linker",
|
|
],
|
|
},
|
|
},
|
|
key: "com.android.runtime.key",
|
|
certificate: ":com.android.runtime.certificate",
|
|
}
|