blob: bfa4043996ff73eac69ba8e9e75f20cbc3c857e5 [file] [log] [blame]
Roland Levillain38a938e2018-09-21 10:55:51 +01001// 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).
5art_runtime_base_binaries_both = [
6 "dalvikvm",
7]
8// - Base requirements (binaries for which a 32-bit version is preferred).
9art_runtime_base_binaries_prefer32 = [
10 "dex2oat",
11 "dexoptanalyzer",
12 "profman",
13]
14// - Base requirements (libraries).
Roland Levillain1617f8c2019-03-26 17:52:30 +000015//
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 Levillain38a938e2018-09-21 10:55:51 +010025art_runtime_base_native_shared_libs = [
Martin Stjernholm023c2182019-03-28 15:52:32 +000026 // External API (having APEX stubs).
Martin Stjernholm84bf6982019-02-05 15:07:57 +000027 "libdexfile_external",
Martin Stjernholmc2f8b502019-01-17 14:51:35 +000028 "libnativebridge",
29 "libnativehelper",
30 "libnativeloader",
Martin Stjernholm023c2182019-03-28 15:52:32 +000031 // 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 Stjernholm0c15b822019-02-14 17:24:19 +000035 // dependencies work with APEX libraries.
Martin Stjernholm023c2182019-03-28 15:52:32 +000036 "libart",
37 "libart-compiler",
Martin Stjernholm0c15b822019-02-14 17:24:19 +000038 "libdt_fd_forward",
39 "libdt_socket",
40 "libjdwp",
41 "libnpt",
Martin Stjernholm023c2182019-03-28 15:52:32 +000042 "libopenjdkjvm",
43 "libopenjdkjvmti",
Roland Levillain38a938e2018-09-21 10:55:51 +010044]
Jiyong Park3296fb12018-12-13 18:32:21 +090045bionic_native_shared_libs = [
Martin Stjernholm023c2182019-03-28 15:52:32 +000046 // External API (having APEX stubs).
Jiyong Park3296fb12018-12-13 18:32:21 +090047 "libc",
48 "libm",
49 "libdl",
50]
Jiyong Parke2bc9fe2018-12-26 11:36:39 +090051bionic_binaries_both = [
52 "linker",
53]
Roland Levillain38a938e2018-09-21 10:55:51 +010054// - Debug variants (binaries for which a 32-bit version is preferred).
Roland Levillain38a938e2018-09-21 10:55:51 +010055art_runtime_debug_binaries_prefer32 = [
Roland Levillain38a938e2018-09-21 10:55:51 +010056 "dexoptanalyzerd",
57 "profmand",
58]
Alex Light572a0962019-01-18 14:48:37 -080059art_runtime_debug_binaries_prefer32_device = [
60 "dex2oatd",
61]
62art_runtime_debug_binaries_both_host = [
63 "dex2oatd",
64]
65
Roland Levillaincb82d092018-11-02 18:50:15 +000066// - Debug variants (libraries).
Roland Levillain38a938e2018-09-21 10:55:51 +010067art_runtime_debug_native_shared_libs = [
Martin Stjernholmc2f8b502019-01-17 14:51:35 +000068 "libadbconnectiond",
Roland Levillain38a938e2018-09-21 10:55:51 +010069 "libartd",
70 "libartd-compiler",
Roland Levillain38a938e2018-09-21 10:55:51 +010071 "libopenjdkjvmd",
72 "libopenjdkjvmtid",
Roland Levillain38a938e2018-09-21 10:55:51 +010073]
74
Neil Fuller5ab4a562018-12-11 20:33:46 +000075// Data files associated with bionic / managed core library APIs.
76art_runtime_data_file_prebuilts = [
Neil Fullera886dab2018-12-06 15:12:52 +000077 "apex_tz_version",
78 "apex_tzdata",
79 "apex_tzlookup.xml",
Neil Fuller5ab4a562018-12-11 20:33:46 +000080 "apex_icu.dat",
Neil Fullera886dab2018-12-06 15:12:52 +000081]
82
Orion Hodson5cb98a92019-03-25 15:07:16 +000083// Tools common to both device APEX and host APEX. Derived from art-tools in art/Android.mk.
Alex Lightda948ce2018-12-06 17:05:41 +000084art_tools_common_binaries = [
Roland Levillain38a938e2018-09-21 10:55:51 +010085 "dexdiag",
86 "dexdump",
87 "dexlist",
Alex Lightda948ce2018-12-06 17:05:41 +000088]
89
Orion Hodson5cb98a92019-03-25 15:07:16 +000090// Tools exclusively for the device APEX derived from art-tools in art/Android.mk.
Roland Levillaine9f0ccc2019-01-07 16:45:58 +000091art_tools_device_only_binaries = [
92 // oatdump cannot link with host linux_bionic due to not using clang lld;
93 // TODO: Make it work with clang lld.
Roland Levillain38a938e2018-09-21 10:55:51 +010094 "oatdump",
95]
Roland Levillain02998cf2019-03-21 14:27:02 +000096// Same, but for only for debug packages.
97art_tools_debug_device_only_binaries = [
98 // oatdumpd cannot link with host linux_bionic due to not using clang lld;
99 // TODO: Make it work with clang lld.
100 "oatdumpd",
101]
Roland Levillain38a938e2018-09-21 10:55:51 +0100102
Orion Hodson5cb98a92019-03-25 15:07:16 +0000103// Tools exclusively for the host APEX derived from art-tools in art/Android.mk.
Roland Levillaine9f0ccc2019-01-07 16:45:58 +0000104art_tools_host_only_binaries = [
Roland Levillain38a938e2018-09-21 10:55:51 +0100105 // FIXME: Does not work as-is, because `ahat` is defined in tools/ahat/Android.mk
106 // (same issue as for `libart_fake` above).
107 //"ahat",
108 "hprof-conv",
Roland Levillain38a938e2018-09-21 10:55:51 +0100109]
110
Roland Levillaine9f0ccc2019-01-07 16:45:58 +0000111art_tools_device_binaries = art_tools_common_binaries + art_tools_device_only_binaries
112art_tools_host_binaries = art_tools_common_binaries + art_tools_host_only_binaries
Alex Lightda948ce2018-12-06 17:05:41 +0000113
Alex Light6585ecb2019-02-08 14:13:22 -0800114// Libraries needed to use com.android.runtime.host for zipapex run-tests
115art_runtime_host_run_test_libs = [
116 "libartd-disassembler"
117]
118
Roland Levillaina0b19032019-02-08 15:59:56 +0000119// Core Java libraries.
120libcore_java_libs = [
121 "core-oj",
122 "core-libart",
123 "okhttp",
124 "bouncycastle",
125 "apache-xml",
126]
127
128// Native libraries that support the core Java libraries.
Roland Levillain1617f8c2019-03-26 17:52:30 +0000129//
130// Note: ART on-device chroot-based testing and benchmarking is not yet using
131// the Runtime APEX, meaning that copies of some of these libraries have to be
132// installed in `/system` for the ART Buildbot set-up to work properly. This is
133// done by the `standalone-apex-files` Make phony target, used by the ART
134// Buildbot and Golem (see `art/Android.mk`). If you add libraries to this list,
135// you may have to also add them to `PRIVATE_RUNTIME_DEPENDENCY_LIBS` in
136// `art/Android.mk`.
137// TODO(b/121117762): Remove this note when both the ART Buildbot and Golem use
138// the Runtime APEX.
Roland Levillaincb82d092018-11-02 18:50:15 +0000139libcore_native_shared_libs = [
Martin Stjernholm023c2182019-03-28 15:52:32 +0000140 // External API (having APEX stubs).
Victor Chang2f0008a2019-01-15 14:10:34 +0000141 "libandroidicu",
Pete Bentley79f56622019-03-21 17:09:56 +0000142 "libandroidio",
Martin Stjernholm023c2182019-03-28 15:52:32 +0000143 // TODO(b/124476339): Clean up the following libraries once "required"
144 // dependencies work with APEX libraries.
Victor Chang2f0008a2019-01-15 14:10:34 +0000145 "libexpat",
146 "libicui18n",
147 "libicuuc",
Pete Bentley51ffdbe2019-01-11 15:25:40 +0000148 "libjavacore",
Roland Levillaincb82d092018-11-02 18:50:15 +0000149 "libopenjdk",
Martin Stjernholm023c2182019-03-28 15:52:32 +0000150]
151libcore_debug_native_shared_libs = [
152 "libopenjdkd",
Victor Chang2f0008a2019-01-15 14:10:34 +0000153]
154
Martin Stjernholm023c2182019-03-28 15:52:32 +0000155libcore_native_device_only_shared_libs = [
Victor Chang2f0008a2019-01-15 14:10:34 +0000156 // TODO(b/122876336): Remove libpac.so once it's migrated to Webview.
157 // libpac is used by frameworks, not by ART host.
158 "libpac",
Roland Levillaincb82d092018-11-02 18:50:15 +0000159]
160
Alex Lightf7f31522019-02-01 11:14:41 -0800161// Temporary library includes for b/123591866 as all libraries are moved into the main art-apex.
162art_runtime_libraries_zipapex = [
163 "libnativebridge",
164 "libnativeloader",
165 "libnativehelper",
166 "libcutils",
167]
168
Roland Levillain38a938e2018-09-21 10:55:51 +0100169apex_key {
170 name: "com.android.runtime.key",
Jiyong Park11a2df32018-11-22 16:25:08 +0900171 public_key: "com.android.runtime.avbpubkey",
172 private_key: "com.android.runtime.pem",
Roland Levillain38a938e2018-09-21 10:55:51 +0100173}
174
Jiyong Parke9618552019-02-11 10:54:36 +0900175android_app_certificate {
176 name: "com.android.runtime.debug.certificate",
177 certificate: "com.android.runtime.debug",
178}
179
180android_app_certificate {
181 name: "com.android.runtime.release.certificate",
182 certificate: "com.android.runtime.release",
183}
184
Roland Levillain3be7afe2018-12-04 19:35:03 +0000185prebuilt_etc {
186 name: "com.android.runtime.ld.config.txt",
187 src: "ld.config.txt",
188 filename: "ld.config.txt",
189 installable: false,
190}
191
Andreas Gampee55ea982019-02-26 09:11:20 -0800192apex_defaults {
193 name: "com.android.runtime-defaults",
Roland Levillain53058802018-11-14 17:32:18 +0000194 compile_multilib: "both",
195 manifest: "manifest.json",
Roland Levillaina0b19032019-02-08 15:59:56 +0000196 java_libs: libcore_java_libs,
Roland Levillain53058802018-11-14 17:32:18 +0000197 native_shared_libs: art_runtime_base_native_shared_libs
Roland Levillaincb82d092018-11-02 18:50:15 +0000198 + bionic_native_shared_libs
Martin Stjernholm023c2182019-03-28 15:52:32 +0000199 + libcore_native_device_only_shared_libs
200 + libcore_native_shared_libs,
Roland Levillain53058802018-11-14 17:32:18 +0000201 multilib: {
202 both: {
Jiyong Parke2bc9fe2018-12-26 11:36:39 +0900203 binaries: art_runtime_base_binaries_both
204 + bionic_binaries_both,
Roland Levillain53058802018-11-14 17:32:18 +0000205 },
206 prefer32: {
207 binaries: art_runtime_base_binaries_prefer32,
208 },
209 first: {
Roland Levillain02998cf2019-03-21 14:27:02 +0000210 binaries: art_tools_device_binaries,
Roland Levillain53058802018-11-14 17:32:18 +0000211 }
212 },
Andreas Gampe31782c12019-02-06 09:47:25 -0800213 binaries: [
Andreas Gampe5bb525a2019-02-19 12:26:35 -0800214 "art_postinstall_hook",
Andreas Gampe31782c12019-02-06 09:47:25 -0800215 "art_preinstall_hook",
216 "art_preinstall_hook_boot",
Andreas Gampe29c111e2019-02-28 13:58:07 -0800217 "art_preinstall_hook_system_server",
Andreas Gampe31782c12019-02-06 09:47:25 -0800218 "art_prepostinstall_utils",
219 ],
Neil Fuller5ab4a562018-12-11 20:33:46 +0000220 prebuilts: art_runtime_data_file_prebuilts
Neil Fullera886dab2018-12-06 15:12:52 +0000221 + ["com.android.runtime.ld.config.txt"],
Roland Levillain53058802018-11-14 17:32:18 +0000222 key: "com.android.runtime.key",
Andreas Gampe57975682019-03-04 09:27:11 -0800223 required: ["art_apex_boot_integrity"],
Andreas Gampee55ea982019-02-26 09:11:20 -0800224}
225
226// Release version of the Runtime APEX module (not containing debug
227// variants nor tools), included in user builds. Also used for
228// storage-constrained devices in userdebug and eng builds.
229apex {
230 name: "com.android.runtime.release",
231 defaults: ["com.android.runtime-defaults"],
Jiyong Parke9618552019-02-11 10:54:36 +0900232 certificate: ":com.android.runtime.release.certificate",
Roland Levillain53058802018-11-14 17:32:18 +0000233}
234
235// "Debug" version of the Runtime APEX module (containing both release and
236// debug variants, as well as additional tools), included in userdebug and
237// eng build.
238apex {
239 name: "com.android.runtime.debug",
Andreas Gampee55ea982019-02-26 09:11:20 -0800240 defaults: ["com.android.runtime-defaults"],
241 native_shared_libs: art_runtime_debug_native_shared_libs
Roland Levillaincb82d092018-11-02 18:50:15 +0000242 + libcore_debug_native_shared_libs,
Roland Levillain38a938e2018-09-21 10:55:51 +0100243 multilib: {
Roland Levillain38a938e2018-09-21 10:55:51 +0100244 prefer32: {
Andreas Gampee55ea982019-02-26 09:11:20 -0800245 binaries: art_runtime_debug_binaries_prefer32
Alex Light572a0962019-01-18 14:48:37 -0800246 + art_runtime_debug_binaries_prefer32_device,
Roland Levillain38a938e2018-09-21 10:55:51 +0100247 },
248 first: {
Roland Levillain02998cf2019-03-21 14:27:02 +0000249 binaries: art_tools_debug_device_only_binaries,
Roland Levillain38a938e2018-09-21 10:55:51 +0100250 }
251 },
Jiyong Parke9618552019-02-11 10:54:36 +0900252 certificate: ":com.android.runtime.debug.certificate",
Roland Levillain38a938e2018-09-21 10:55:51 +0100253}
Alex Lightda948ce2018-12-06 17:05:41 +0000254
255// TODO: Do this better. art_apex will disable host builds when
256// HOST_PREFER_32_BIT is set. We cannot simply use com.android.runtime.debug
257// because binaries have different multilib classes and 'multilib: {}' isn't
258// supported by target: { ... }.
259// See b/120617876 for more information.
Alex Light0239f2f2019-02-07 13:38:50 -0800260art_apex_test {
Alex Lightda948ce2018-12-06 17:05:41 +0000261 name: "com.android.runtime.host",
262 compile_multilib: "both",
263 payload_type: "zip",
264 host_supported: true,
265 device_supported: false,
266 manifest: "manifest.json",
Roland Levillaina0b19032019-02-08 15:59:56 +0000267 java_libs: libcore_java_libs,
Alex Light55a9bad2019-01-29 18:34:09 -0800268 ignore_system_library_special_case: true,
Alex Lightda948ce2018-12-06 17:05:41 +0000269 native_shared_libs: art_runtime_base_native_shared_libs
Roland Levillaincb82d092018-11-02 18:50:15 +0000270 + art_runtime_debug_native_shared_libs
271 + libcore_native_shared_libs
Alex Lightf7f31522019-02-01 11:14:41 -0800272 + libcore_debug_native_shared_libs
Alex Light6585ecb2019-02-08 14:13:22 -0800273 + art_runtime_libraries_zipapex
274 + art_runtime_host_run_test_libs,
Alex Lightda948ce2018-12-06 17:05:41 +0000275 multilib: {
276 both: {
Alex Light572a0962019-01-18 14:48:37 -0800277 binaries: art_runtime_base_binaries_both
278 + art_runtime_debug_binaries_both_host,
Alex Lightda948ce2018-12-06 17:05:41 +0000279 },
280 first: {
Roland Levillaine9f0ccc2019-01-07 16:45:58 +0000281 binaries: art_tools_host_binaries
Alex Lightda948ce2018-12-06 17:05:41 +0000282 + art_runtime_base_binaries_prefer32
283 + art_runtime_debug_binaries_prefer32,
284 }
285 },
286 key: "com.android.runtime.key",
Alex Lighte3521522018-12-06 22:51:18 -0800287 target: {
288 darwin: {
289 enabled: false,
290 },
Alex Light55a9bad2019-01-29 18:34:09 -0800291 linux_bionic: {
292 enabled: true,
293 multilib: {
294 both: {
295 native_shared_libs: bionic_native_shared_libs,
296 binaries: bionic_binaries_both,
297 }
298 }
299 },
Alex Lighte3521522018-12-06 22:51:18 -0800300 },
Alex Lightda948ce2018-12-06 17:05:41 +0000301}
Jiyong Park1410e9f2019-02-02 04:18:23 +0000302
303python_binary_host {
304 name: "art-apex-tester",
305 srcs: ["art_apex_test.py"],
306 main: "art_apex_test.py",
307 version: {
308 py2: {
309 enabled: false,
310 },
311 py3: {
312 enabled: true,
313 },
314 },
315}
316
317// Genrules so we can run the checker, and empty Java library so that it gets executed.
318
319genrule {
320 name: "art-check-release-apex-gen",
321 srcs: [":com.android.runtime.release"],
322 tools: [
323 "art-apex-tester",
324 "debugfs",
325 ],
326 cmd: "$(location art-apex-tester)"
327 + " --debugfs $(location debugfs)"
328 + " --tmpdir $(genDir)"
329 + " $(in)"
330 + " && touch $(out)",
331 out: ["art-check-release-apex-gen.dummy"],
332}
333cc_prebuilt_binary {
334 name: "art-check-release-apex-gen-fakebin",
335 srcs: [":art-check-release-apex-gen"],
336 host_supported: true,
337 device_supported: false,
338 target: {
339 darwin: {
340 enabled: false, // No python3.
341 },
342 },
343}
344
345genrule {
346 name: "art-check-debug-apex-gen",
347 srcs: [":com.android.runtime.debug"],
348 tools: [
349 "art-apex-tester",
350 "debugfs",
351 ],
352 cmd: "$(location art-apex-tester)"
353 + " --debugfs $(location debugfs)"
354 + " --tmpdir $(genDir)"
355 + " --debug"
356 + " $(in)"
357 + " && touch $(out)",
358 out: ["art-check-debug-apex-gen.dummy"],
359}
360cc_prebuilt_binary {
361 name: "art-check-debug-apex-gen-fakebin",
362 srcs: [":art-check-debug-apex-gen"],
363 host_supported: true,
364 device_supported: false,
365 target: {
366 darwin: {
367 enabled: false, // No python3.
368 },
369 },
370}
Andreas Gampe31782c12019-02-06 09:47:25 -0800371
372// Pre-install scripts.
373
374sh_binary {
375 name: "art_preinstall_hook",
376 src: "art_preinstall_hook.sh",
377}
378sh_binary {
379 name: "art_preinstall_hook_boot",
380 src: "art_preinstall_hook_boot.sh",
381}
382sh_binary {
Andreas Gampe29c111e2019-02-28 13:58:07 -0800383 name: "art_preinstall_hook_system_server",
384 src: "art_preinstall_hook_system_server.sh",
385}
386sh_binary {
Andreas Gampe31782c12019-02-06 09:47:25 -0800387 name: "art_prepostinstall_utils",
388 src: "art_prepostinstall_utils.sh",
389}
Andreas Gampe5bb525a2019-02-19 12:26:35 -0800390sh_binary {
391 name: "art_postinstall_hook",
392 src: "art_postinstall_hook.sh",
393}
Andreas Gampe57975682019-03-04 09:27:11 -0800394
395sh_binary {
396 name: "art_apex_boot_integrity",
397 src: "art_apex_boot_integrity.sh",
398 init_rc: ["art_apex_boot_integrity.rc"],
399}