Elliott Hughes | 470d10c | 2019-09-30 16:44:58 -0700 | [diff] [blame] | 1 | // 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 | |
| 6 | android_app_certificate { |
| 7 | name: "com.android.runtime.certificate", |
| 8 | certificate: "com.android.runtime", |
| 9 | } |
| 10 | |
| 11 | apex_key { |
| 12 | name: "com.android.runtime.key", |
| 13 | public_key: "com.android.runtime.avbpubkey", |
| 14 | private_key: "com.android.runtime.pem", |
| 15 | } |
| 16 | |
| 17 | prebuilt_etc { |
| 18 | name: "com.android.runtime.ld.config.txt", |
| 19 | src: "ld.config.txt", |
| 20 | filename: "ld.config.txt", |
| 21 | installable: false, |
| 22 | } |
| 23 | |
| 24 | apex { |
| 25 | name: "com.android.runtime", |
| 26 | compile_multilib: "both", |
| 27 | manifest: "manifest.json", |
| 28 | native_shared_libs: [ |
| 29 | "libc", |
| 30 | "libm", |
| 31 | "libdl", |
Elliott Hughes | 470d10c | 2019-09-30 16:44:58 -0700 | [diff] [blame] | 32 | "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 | } |