Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 1 | // Android Runtime APEX module. |
| 2 | |
| 3 | // Modules listed in LOCAL_REQUIRED_MODULES for module art-runtime in art/Android.mk. |
| 4 | // - Base requirements (binaries for which both 32- and 64-bit versions are built, if relevant). |
| 5 | art_runtime_base_binaries_both = [ |
| 6 | "dalvikvm", |
| 7 | ] |
| 8 | // - Base requirements (binaries for which a 32-bit version is preferred). |
| 9 | art_runtime_base_binaries_prefer32 = [ |
| 10 | "dex2oat", |
| 11 | "dexoptanalyzer", |
| 12 | "profman", |
| 13 | ] |
| 14 | // - Base requirements (libraries). |
Roland Levillain | 1617f8c | 2019-03-26 17:52:30 +0000 | [diff] [blame] | 15 | // |
| 16 | // Note: ART on-device chroot-based testing and benchmarking is not yet using |
| 17 | // the Runtime APEX, meaning that copies of some of these libraries have to be |
| 18 | // installed in `/system` for the ART Buildbot set-up to work properly. This is |
| 19 | // done by the `standalone-apex-files` Make phony target, used by the ART |
| 20 | // Buildbot and Golem (see `art/Android.mk`). If you add libraries to this list, |
| 21 | // you may have to also add them to `PRIVATE_RUNTIME_DEPENDENCY_LIBS` in |
| 22 | // `art/Android.mk`. |
| 23 | // TODO(b/121117762): Remove this note when both the ART Buildbot and Golem use |
| 24 | // the Runtime APEX. |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 25 | art_runtime_base_native_shared_libs = [ |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 26 | // External API (having APEX stubs). |
Martin Stjernholm | 84bf698 | 2019-02-05 15:07:57 +0000 | [diff] [blame] | 27 | "libdexfile_external", |
Martin Stjernholm | c2f8b50 | 2019-01-17 14:51:35 +0000 | [diff] [blame] | 28 | "libnativebridge", |
| 29 | "libnativehelper", |
| 30 | "libnativeloader", |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 31 | // libadbconnection is internal and loaded with dlopen(), but it cannot use |
| 32 | // "required" because of cyclic dependency (b/124505714). |
| 33 | "libadbconnection", |
| 34 | // TODO(b/124476339): Clean up the following libraries once "required" |
Martin Stjernholm | 0c15b82 | 2019-02-14 17:24:19 +0000 | [diff] [blame] | 35 | // dependencies work with APEX libraries. |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 36 | "libart", |
| 37 | "libart-compiler", |
Martin Stjernholm | 0c15b82 | 2019-02-14 17:24:19 +0000 | [diff] [blame] | 38 | "libdt_fd_forward", |
| 39 | "libdt_socket", |
| 40 | "libjdwp", |
| 41 | "libnpt", |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 42 | "libopenjdkjvm", |
| 43 | "libopenjdkjvmti", |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 44 | ] |
Jiyong Park | 3296fb1 | 2018-12-13 18:32:21 +0900 | [diff] [blame] | 45 | bionic_native_shared_libs = [ |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 46 | // External API (having APEX stubs). |
Jiyong Park | 3296fb1 | 2018-12-13 18:32:21 +0900 | [diff] [blame] | 47 | "libc", |
| 48 | "libm", |
| 49 | "libdl", |
| 50 | ] |
Jiyong Park | 408f7d0 | 2019-04-02 23:04:42 +0900 | [diff] [blame^] | 51 | |
| 52 | bionic_native_shared_libs_device = [ |
| 53 | // ... and their internal dependencies |
| 54 | // These are available only on device |
| 55 | "libc_malloc_debug", |
| 56 | "libc_malloc_hooks", |
| 57 | ] |
| 58 | |
Jiyong Park | e2bc9fe | 2018-12-26 11:36:39 +0900 | [diff] [blame] | 59 | bionic_binaries_both = [ |
| 60 | "linker", |
| 61 | ] |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 62 | // - Debug variants (binaries for which a 32-bit version is preferred). |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 63 | art_runtime_debug_binaries_prefer32 = [ |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 64 | "dexoptanalyzerd", |
| 65 | "profmand", |
| 66 | ] |
Alex Light | 572a096 | 2019-01-18 14:48:37 -0800 | [diff] [blame] | 67 | art_runtime_debug_binaries_prefer32_device = [ |
| 68 | "dex2oatd", |
| 69 | ] |
| 70 | art_runtime_debug_binaries_both_host = [ |
| 71 | "dex2oatd", |
| 72 | ] |
| 73 | |
Roland Levillain | cb82d09 | 2018-11-02 18:50:15 +0000 | [diff] [blame] | 74 | // - Debug variants (libraries). |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 75 | art_runtime_debug_native_shared_libs = [ |
Martin Stjernholm | c2f8b50 | 2019-01-17 14:51:35 +0000 | [diff] [blame] | 76 | "libadbconnectiond", |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 77 | "libartd", |
| 78 | "libartd-compiler", |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 79 | "libopenjdkjvmd", |
| 80 | "libopenjdkjvmtid", |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 81 | ] |
| 82 | |
Neil Fuller | 5ab4a56 | 2018-12-11 20:33:46 +0000 | [diff] [blame] | 83 | // Data files associated with bionic / managed core library APIs. |
| 84 | art_runtime_data_file_prebuilts = [ |
Neil Fuller | a886dab | 2018-12-06 15:12:52 +0000 | [diff] [blame] | 85 | "apex_tz_version", |
| 86 | "apex_tzdata", |
| 87 | "apex_tzlookup.xml", |
Neil Fuller | 5ab4a56 | 2018-12-11 20:33:46 +0000 | [diff] [blame] | 88 | "apex_icu.dat", |
Neil Fuller | a886dab | 2018-12-06 15:12:52 +0000 | [diff] [blame] | 89 | ] |
| 90 | |
Orion Hodson | 5cb98a9 | 2019-03-25 15:07:16 +0000 | [diff] [blame] | 91 | // Tools common to both device APEX and host APEX. Derived from art-tools in art/Android.mk. |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 92 | art_tools_common_binaries = [ |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 93 | "dexdump", |
| 94 | "dexlist", |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 95 | ] |
| 96 | |
Martin Stjernholm | 77f1766 | 2019-04-03 17:08:21 +0100 | [diff] [blame] | 97 | // Tools common to both device and host debug APEXes. |
| 98 | art_tools_debug_binaries = [ |
| 99 | "dexdiag", |
| 100 | ] |
| 101 | |
Orion Hodson | 5cb98a9 | 2019-03-25 15:07:16 +0000 | [diff] [blame] | 102 | // Tools exclusively for the device APEX derived from art-tools in art/Android.mk. |
Roland Levillain | e9f0ccc | 2019-01-07 16:45:58 +0000 | [diff] [blame] | 103 | art_tools_device_only_binaries = [ |
| 104 | // oatdump cannot link with host linux_bionic due to not using clang lld; |
| 105 | // TODO: Make it work with clang lld. |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 106 | "oatdump", |
| 107 | ] |
Roland Levillain | 02998cf | 2019-03-21 14:27:02 +0000 | [diff] [blame] | 108 | // Same, but for only for debug packages. |
| 109 | art_tools_debug_device_only_binaries = [ |
| 110 | // oatdumpd cannot link with host linux_bionic due to not using clang lld; |
| 111 | // TODO: Make it work with clang lld. |
| 112 | "oatdumpd", |
| 113 | ] |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 114 | |
Orion Hodson | 5cb98a9 | 2019-03-25 15:07:16 +0000 | [diff] [blame] | 115 | // Tools exclusively for the host APEX derived from art-tools in art/Android.mk. |
Roland Levillain | e9f0ccc | 2019-01-07 16:45:58 +0000 | [diff] [blame] | 116 | art_tools_host_only_binaries = [ |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 117 | // FIXME: Does not work as-is, because `ahat` is defined in tools/ahat/Android.mk |
| 118 | // (same issue as for `libart_fake` above). |
| 119 | //"ahat", |
| 120 | "hprof-conv", |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 121 | ] |
| 122 | |
Alex Light | 6585ecb | 2019-02-08 14:13:22 -0800 | [diff] [blame] | 123 | // Libraries needed to use com.android.runtime.host for zipapex run-tests |
| 124 | art_runtime_host_run_test_libs = [ |
| 125 | "libartd-disassembler" |
| 126 | ] |
| 127 | |
Roland Levillain | a0b1903 | 2019-02-08 15:59:56 +0000 | [diff] [blame] | 128 | // Core Java libraries. |
| 129 | libcore_java_libs = [ |
| 130 | "core-oj", |
| 131 | "core-libart", |
| 132 | "okhttp", |
| 133 | "bouncycastle", |
| 134 | "apache-xml", |
| 135 | ] |
| 136 | |
| 137 | // Native libraries that support the core Java libraries. |
Roland Levillain | 1617f8c | 2019-03-26 17:52:30 +0000 | [diff] [blame] | 138 | // |
| 139 | // Note: ART on-device chroot-based testing and benchmarking is not yet using |
| 140 | // the Runtime APEX, meaning that copies of some of these libraries have to be |
| 141 | // installed in `/system` for the ART Buildbot set-up to work properly. This is |
| 142 | // done by the `standalone-apex-files` Make phony target, used by the ART |
| 143 | // Buildbot and Golem (see `art/Android.mk`). If you add libraries to this list, |
| 144 | // you may have to also add them to `PRIVATE_RUNTIME_DEPENDENCY_LIBS` in |
| 145 | // `art/Android.mk`. |
| 146 | // TODO(b/121117762): Remove this note when both the ART Buildbot and Golem use |
| 147 | // the Runtime APEX. |
Roland Levillain | cb82d09 | 2018-11-02 18:50:15 +0000 | [diff] [blame] | 148 | libcore_native_shared_libs = [ |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 149 | // External API (having APEX stubs). |
Victor Chang | 2f0008a | 2019-01-15 14:10:34 +0000 | [diff] [blame] | 150 | "libandroidicu", |
Pete Bentley | 79f5662 | 2019-03-21 17:09:56 +0000 | [diff] [blame] | 151 | "libandroidio", |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 152 | // TODO(b/124476339): Clean up the following libraries once "required" |
| 153 | // dependencies work with APEX libraries. |
Victor Chang | 2f0008a | 2019-01-15 14:10:34 +0000 | [diff] [blame] | 154 | "libexpat", |
| 155 | "libicui18n", |
| 156 | "libicuuc", |
Pete Bentley | 51ffdbe | 2019-01-11 15:25:40 +0000 | [diff] [blame] | 157 | "libjavacore", |
Roland Levillain | cb82d09 | 2018-11-02 18:50:15 +0000 | [diff] [blame] | 158 | "libopenjdk", |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 159 | ] |
| 160 | libcore_debug_native_shared_libs = [ |
| 161 | "libopenjdkd", |
Victor Chang | 2f0008a | 2019-01-15 14:10:34 +0000 | [diff] [blame] | 162 | ] |
| 163 | |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 164 | libcore_native_device_only_shared_libs = [ |
Victor Chang | 2f0008a | 2019-01-15 14:10:34 +0000 | [diff] [blame] | 165 | // TODO(b/122876336): Remove libpac.so once it's migrated to Webview. |
| 166 | // libpac is used by frameworks, not by ART host. |
| 167 | "libpac", |
Roland Levillain | cb82d09 | 2018-11-02 18:50:15 +0000 | [diff] [blame] | 168 | ] |
| 169 | |
Alex Light | f7f3152 | 2019-02-01 11:14:41 -0800 | [diff] [blame] | 170 | // Temporary library includes for b/123591866 as all libraries are moved into the main art-apex. |
| 171 | art_runtime_libraries_zipapex = [ |
| 172 | "libnativebridge", |
| 173 | "libnativeloader", |
| 174 | "libnativehelper", |
| 175 | "libcutils", |
| 176 | ] |
| 177 | |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 178 | apex_key { |
| 179 | name: "com.android.runtime.key", |
Jiyong Park | 11a2df3 | 2018-11-22 16:25:08 +0900 | [diff] [blame] | 180 | public_key: "com.android.runtime.avbpubkey", |
| 181 | private_key: "com.android.runtime.pem", |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 182 | } |
| 183 | |
Jiyong Park | e961855 | 2019-02-11 10:54:36 +0900 | [diff] [blame] | 184 | android_app_certificate { |
| 185 | name: "com.android.runtime.debug.certificate", |
| 186 | certificate: "com.android.runtime.debug", |
| 187 | } |
| 188 | |
| 189 | android_app_certificate { |
| 190 | name: "com.android.runtime.release.certificate", |
| 191 | certificate: "com.android.runtime.release", |
| 192 | } |
| 193 | |
Roland Levillain | 3be7afe | 2018-12-04 19:35:03 +0000 | [diff] [blame] | 194 | prebuilt_etc { |
| 195 | name: "com.android.runtime.ld.config.txt", |
| 196 | src: "ld.config.txt", |
| 197 | filename: "ld.config.txt", |
| 198 | installable: false, |
| 199 | } |
| 200 | |
Andreas Gampe | e55ea98 | 2019-02-26 09:11:20 -0800 | [diff] [blame] | 201 | apex_defaults { |
| 202 | name: "com.android.runtime-defaults", |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 203 | compile_multilib: "both", |
| 204 | manifest: "manifest.json", |
Roland Levillain | a0b1903 | 2019-02-08 15:59:56 +0000 | [diff] [blame] | 205 | java_libs: libcore_java_libs, |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 206 | native_shared_libs: art_runtime_base_native_shared_libs |
Roland Levillain | cb82d09 | 2018-11-02 18:50:15 +0000 | [diff] [blame] | 207 | + bionic_native_shared_libs |
Martin Stjernholm | 023c218 | 2019-03-28 15:52:32 +0000 | [diff] [blame] | 208 | + libcore_native_device_only_shared_libs |
| 209 | + libcore_native_shared_libs, |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 210 | multilib: { |
| 211 | both: { |
Jiyong Park | e2bc9fe | 2018-12-26 11:36:39 +0900 | [diff] [blame] | 212 | binaries: art_runtime_base_binaries_both |
| 213 | + bionic_binaries_both, |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 214 | }, |
| 215 | prefer32: { |
| 216 | binaries: art_runtime_base_binaries_prefer32, |
| 217 | }, |
| 218 | first: { |
Martin Stjernholm | 77f1766 | 2019-04-03 17:08:21 +0100 | [diff] [blame] | 219 | binaries: art_tools_common_binaries |
| 220 | + art_tools_device_only_binaries, |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 221 | } |
| 222 | }, |
Andreas Gampe | 31782c1 | 2019-02-06 09:47:25 -0800 | [diff] [blame] | 223 | binaries: [ |
Andreas Gampe | 5bb525a | 2019-02-19 12:26:35 -0800 | [diff] [blame] | 224 | "art_postinstall_hook", |
Andreas Gampe | 31782c1 | 2019-02-06 09:47:25 -0800 | [diff] [blame] | 225 | "art_preinstall_hook", |
| 226 | "art_preinstall_hook_boot", |
Andreas Gampe | 29c111e | 2019-02-28 13:58:07 -0800 | [diff] [blame] | 227 | "art_preinstall_hook_system_server", |
Andreas Gampe | 31782c1 | 2019-02-06 09:47:25 -0800 | [diff] [blame] | 228 | "art_prepostinstall_utils", |
| 229 | ], |
Neil Fuller | 5ab4a56 | 2018-12-11 20:33:46 +0000 | [diff] [blame] | 230 | prebuilts: art_runtime_data_file_prebuilts |
Neil Fuller | a886dab | 2018-12-06 15:12:52 +0000 | [diff] [blame] | 231 | + ["com.android.runtime.ld.config.txt"], |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 232 | key: "com.android.runtime.key", |
Andreas Gampe | 5797568 | 2019-03-04 09:27:11 -0800 | [diff] [blame] | 233 | required: ["art_apex_boot_integrity"], |
Andreas Gampe | e55ea98 | 2019-02-26 09:11:20 -0800 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | // Release version of the Runtime APEX module (not containing debug |
| 237 | // variants nor tools), included in user builds. Also used for |
| 238 | // storage-constrained devices in userdebug and eng builds. |
| 239 | apex { |
| 240 | name: "com.android.runtime.release", |
| 241 | defaults: ["com.android.runtime-defaults"], |
Jiyong Park | 408f7d0 | 2019-04-02 23:04:42 +0900 | [diff] [blame^] | 242 | native_shared_libs: bionic_native_shared_libs_device, |
Jiyong Park | e961855 | 2019-02-11 10:54:36 +0900 | [diff] [blame] | 243 | certificate: ":com.android.runtime.release.certificate", |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | // "Debug" version of the Runtime APEX module (containing both release and |
| 247 | // debug variants, as well as additional tools), included in userdebug and |
| 248 | // eng build. |
| 249 | apex { |
| 250 | name: "com.android.runtime.debug", |
Andreas Gampe | e55ea98 | 2019-02-26 09:11:20 -0800 | [diff] [blame] | 251 | defaults: ["com.android.runtime-defaults"], |
| 252 | native_shared_libs: art_runtime_debug_native_shared_libs |
Jiyong Park | 408f7d0 | 2019-04-02 23:04:42 +0900 | [diff] [blame^] | 253 | + libcore_debug_native_shared_libs |
| 254 | + bionic_native_shared_libs_device, |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 255 | multilib: { |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 256 | prefer32: { |
Andreas Gampe | e55ea98 | 2019-02-26 09:11:20 -0800 | [diff] [blame] | 257 | binaries: art_runtime_debug_binaries_prefer32 |
Alex Light | 572a096 | 2019-01-18 14:48:37 -0800 | [diff] [blame] | 258 | + art_runtime_debug_binaries_prefer32_device, |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 259 | }, |
| 260 | first: { |
Martin Stjernholm | 77f1766 | 2019-04-03 17:08:21 +0100 | [diff] [blame] | 261 | binaries: art_tools_debug_binaries |
| 262 | + art_tools_debug_device_only_binaries, |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 263 | } |
| 264 | }, |
Jiyong Park | e961855 | 2019-02-11 10:54:36 +0900 | [diff] [blame] | 265 | certificate: ":com.android.runtime.debug.certificate", |
Roland Levillain | 38a938e | 2018-09-21 10:55:51 +0100 | [diff] [blame] | 266 | } |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 267 | |
| 268 | // TODO: Do this better. art_apex will disable host builds when |
| 269 | // HOST_PREFER_32_BIT is set. We cannot simply use com.android.runtime.debug |
| 270 | // because binaries have different multilib classes and 'multilib: {}' isn't |
| 271 | // supported by target: { ... }. |
| 272 | // See b/120617876 for more information. |
Alex Light | 0239f2f | 2019-02-07 13:38:50 -0800 | [diff] [blame] | 273 | art_apex_test { |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 274 | name: "com.android.runtime.host", |
| 275 | compile_multilib: "both", |
| 276 | payload_type: "zip", |
| 277 | host_supported: true, |
| 278 | device_supported: false, |
| 279 | manifest: "manifest.json", |
Roland Levillain | a0b1903 | 2019-02-08 15:59:56 +0000 | [diff] [blame] | 280 | java_libs: libcore_java_libs, |
Alex Light | 55a9bad | 2019-01-29 18:34:09 -0800 | [diff] [blame] | 281 | ignore_system_library_special_case: true, |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 282 | native_shared_libs: art_runtime_base_native_shared_libs |
Roland Levillain | cb82d09 | 2018-11-02 18:50:15 +0000 | [diff] [blame] | 283 | + art_runtime_debug_native_shared_libs |
| 284 | + libcore_native_shared_libs |
Alex Light | f7f3152 | 2019-02-01 11:14:41 -0800 | [diff] [blame] | 285 | + libcore_debug_native_shared_libs |
Alex Light | 6585ecb | 2019-02-08 14:13:22 -0800 | [diff] [blame] | 286 | + art_runtime_libraries_zipapex |
| 287 | + art_runtime_host_run_test_libs, |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 288 | multilib: { |
| 289 | both: { |
Alex Light | 572a096 | 2019-01-18 14:48:37 -0800 | [diff] [blame] | 290 | binaries: art_runtime_base_binaries_both |
| 291 | + art_runtime_debug_binaries_both_host, |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 292 | }, |
| 293 | first: { |
Martin Stjernholm | 77f1766 | 2019-04-03 17:08:21 +0100 | [diff] [blame] | 294 | binaries: art_tools_common_binaries |
| 295 | + art_tools_debug_binaries // Host APEX is always debug. |
| 296 | + art_tools_host_only_binaries |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 297 | + art_runtime_base_binaries_prefer32 |
| 298 | + art_runtime_debug_binaries_prefer32, |
| 299 | } |
| 300 | }, |
| 301 | key: "com.android.runtime.key", |
Alex Light | e352152 | 2018-12-06 22:51:18 -0800 | [diff] [blame] | 302 | target: { |
| 303 | darwin: { |
| 304 | enabled: false, |
| 305 | }, |
Alex Light | 55a9bad | 2019-01-29 18:34:09 -0800 | [diff] [blame] | 306 | linux_bionic: { |
| 307 | enabled: true, |
| 308 | multilib: { |
| 309 | both: { |
| 310 | native_shared_libs: bionic_native_shared_libs, |
| 311 | binaries: bionic_binaries_both, |
| 312 | } |
| 313 | } |
| 314 | }, |
Alex Light | e352152 | 2018-12-06 22:51:18 -0800 | [diff] [blame] | 315 | }, |
Alex Light | da948ce | 2018-12-06 17:05:41 +0000 | [diff] [blame] | 316 | } |
Jiyong Park | 1410e9f | 2019-02-02 04:18:23 +0000 | [diff] [blame] | 317 | |
| 318 | python_binary_host { |
| 319 | name: "art-apex-tester", |
| 320 | srcs: ["art_apex_test.py"], |
| 321 | main: "art_apex_test.py", |
| 322 | version: { |
| 323 | py2: { |
| 324 | enabled: false, |
| 325 | }, |
| 326 | py3: { |
| 327 | enabled: true, |
| 328 | }, |
| 329 | }, |
| 330 | } |
| 331 | |
| 332 | // Genrules so we can run the checker, and empty Java library so that it gets executed. |
| 333 | |
| 334 | genrule { |
| 335 | name: "art-check-release-apex-gen", |
| 336 | srcs: [":com.android.runtime.release"], |
| 337 | tools: [ |
| 338 | "art-apex-tester", |
| 339 | "debugfs", |
| 340 | ], |
| 341 | cmd: "$(location art-apex-tester)" |
| 342 | + " --debugfs $(location debugfs)" |
| 343 | + " --tmpdir $(genDir)" |
| 344 | + " $(in)" |
| 345 | + " && touch $(out)", |
| 346 | out: ["art-check-release-apex-gen.dummy"], |
| 347 | } |
| 348 | cc_prebuilt_binary { |
| 349 | name: "art-check-release-apex-gen-fakebin", |
| 350 | srcs: [":art-check-release-apex-gen"], |
| 351 | host_supported: true, |
| 352 | device_supported: false, |
| 353 | target: { |
| 354 | darwin: { |
| 355 | enabled: false, // No python3. |
| 356 | }, |
| 357 | }, |
| 358 | } |
| 359 | |
| 360 | genrule { |
| 361 | name: "art-check-debug-apex-gen", |
| 362 | srcs: [":com.android.runtime.debug"], |
| 363 | tools: [ |
| 364 | "art-apex-tester", |
| 365 | "debugfs", |
| 366 | ], |
| 367 | cmd: "$(location art-apex-tester)" |
| 368 | + " --debugfs $(location debugfs)" |
| 369 | + " --tmpdir $(genDir)" |
| 370 | + " --debug" |
| 371 | + " $(in)" |
| 372 | + " && touch $(out)", |
| 373 | out: ["art-check-debug-apex-gen.dummy"], |
| 374 | } |
| 375 | cc_prebuilt_binary { |
| 376 | name: "art-check-debug-apex-gen-fakebin", |
| 377 | srcs: [":art-check-debug-apex-gen"], |
| 378 | host_supported: true, |
| 379 | device_supported: false, |
| 380 | target: { |
| 381 | darwin: { |
| 382 | enabled: false, // No python3. |
| 383 | }, |
| 384 | }, |
| 385 | } |
Andreas Gampe | 31782c1 | 2019-02-06 09:47:25 -0800 | [diff] [blame] | 386 | |
| 387 | // Pre-install scripts. |
| 388 | |
| 389 | sh_binary { |
| 390 | name: "art_preinstall_hook", |
| 391 | src: "art_preinstall_hook.sh", |
| 392 | } |
| 393 | sh_binary { |
| 394 | name: "art_preinstall_hook_boot", |
| 395 | src: "art_preinstall_hook_boot.sh", |
| 396 | } |
| 397 | sh_binary { |
Andreas Gampe | 29c111e | 2019-02-28 13:58:07 -0800 | [diff] [blame] | 398 | name: "art_preinstall_hook_system_server", |
| 399 | src: "art_preinstall_hook_system_server.sh", |
| 400 | } |
| 401 | sh_binary { |
Andreas Gampe | 31782c1 | 2019-02-06 09:47:25 -0800 | [diff] [blame] | 402 | name: "art_prepostinstall_utils", |
| 403 | src: "art_prepostinstall_utils.sh", |
| 404 | } |
Andreas Gampe | 5bb525a | 2019-02-19 12:26:35 -0800 | [diff] [blame] | 405 | sh_binary { |
| 406 | name: "art_postinstall_hook", |
| 407 | src: "art_postinstall_hook.sh", |
| 408 | } |
Andreas Gampe | 5797568 | 2019-03-04 09:27:11 -0800 | [diff] [blame] | 409 | |
| 410 | sh_binary { |
| 411 | name: "art_apex_boot_integrity", |
| 412 | src: "art_apex_boot_integrity.sh", |
| 413 | init_rc: ["art_apex_boot_integrity.rc"], |
| 414 | } |