blob: 276541e22670dc496cc1a22f96f9f4245a8c1bf4 [file] [log] [blame]
Elliott Hughes470d10c2019-09-30 16:44:58 -07001// Runtime (Bionic) APEX module
2//
3// In Q this contained Bionic, ART and Libcore.
4// It keeps the name /apex/com.android.runtime for app compat reasons.
5
6android_app_certificate {
7 name: "com.android.runtime.certificate",
8 certificate: "com.android.runtime",
9}
10
11apex_key {
12 name: "com.android.runtime.key",
13 public_key: "com.android.runtime.avbpubkey",
14 private_key: "com.android.runtime.pem",
15}
16
17prebuilt_etc {
18 name: "com.android.runtime.ld.config.txt",
19 src: "ld.config.txt",
20 filename: "ld.config.txt",
21 installable: false,
22}
23
24apex {
25 name: "com.android.runtime",
26 compile_multilib: "both",
27 manifest: "manifest.json",
28 native_shared_libs: [
29 "libc",
30 "libm",
31 "libdl",
Elliott Hughes470d10c2019-09-30 16:44:58 -070032 "libc_malloc_debug",
33 "libc_malloc_hooks",
34 ],
35 multilib: {
36 both: {
37 binaries: ["linker"],
38 },
39 },
40 prebuilts: ["com.android.runtime.ld.config.txt"],
41 key: "com.android.runtime.key",
42 certificate: ":com.android.runtime.certificate",
43}