blob: a5c6804e6ad1755f4081e24e53a4a9ee5ed956a7 [file] [log] [blame]
Carl Shapiro7b216702011-06-17 15:09:26 -07001#
2# Copyright (C) 2011 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH := $(call my-dir)
Carl Shapiro7b216702011-06-17 15:09:26 -070018
Brian Carlstrom7940e442013-07-12 13:46:57 -070019art_path := $(LOCAL_PATH)
Brian Carlstromcdc8de42011-07-19 14:23:17 -070020
Brian Carlstromb2793372012-03-17 18:27:16 -070021########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070022# clean-oat rules
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070023#
24
Ian Rogersafd9acc2014-06-17 08:21:54 -070025include $(art_path)/build/Android.common_path.mk
26
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070027.PHONY: clean-oat
28clean-oat: clean-oat-host clean-oat-target
29
30.PHONY: clean-oat-host
31clean-oat-host:
Vladimir Marko589bf902019-12-12 13:19:18 +000032 find $(OUT_DIR) '(' -name '*.oat' -o -name '*.odex' -o -name '*.art' -o -name '*.vdex' ')' -a -type f | xargs rm -f
Dan Willemsen01046062019-01-02 13:39:29 -080033 rm -rf $(TMPDIR)/*/test-*/dalvik-cache/*
Andreas Gampe5a79fde2014-08-06 13:12:26 -070034 rm -rf $(TMPDIR)/android-data/dalvik-cache/*
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070035
36.PHONY: clean-oat-target
37clean-oat-target:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010038 $(ADB) root
39 $(ADB) wait-for-device remount
40 $(ADB) shell rm -rf $(ART_TARGET_NATIVETEST_DIR)
41 $(ADB) shell rm -rf $(ART_TARGET_TEST_DIR)
42 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*/*
Nicolas Geoffraya144c272019-02-20 12:03:53 +000043 $(ADB) shell rm -rf $(ART_DEXPREOPT_BOOT_JAR_DIR)/$(DEX2OAT_TARGET_ARCH)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010044 $(ADB) shell rm -rf system/app/$(DEX2OAT_TARGET_ARCH)
Brian Carlstromf662e062014-05-19 16:09:42 -070045ifdef TARGET_2ND_ARCH
Nicolas Geoffraya144c272019-02-20 12:03:53 +000046 $(ADB) shell rm -rf $(ART_DEXPREOPT_BOOT_JAR_DIR)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010047 $(ADB) shell rm -rf system/app/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)
Brian Carlstromf662e062014-05-19 16:09:42 -070048endif
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010049 $(ADB) shell rm -rf data/run-test/test-*/dalvik-cache/*
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070050
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070051########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070052# cpplint rules to style check art source files
53
54include $(art_path)/build/Android.cpplint.mk
55
56########################################################################
57# product rules
58
Colin Cross35235cb2016-09-09 11:19:32 -070059include $(art_path)/oatdump/Android.mk
Richard Uhlerb730b782015-07-15 16:01:58 -070060include $(art_path)/tools/ahat/Android.mk
Stephen Kyle959ffdf2014-11-28 14:27:44 +000061include $(art_path)/tools/dexfuzz/Android.mk
Nicolas Geoffrayd1ef7172018-03-28 09:16:31 +010062include $(art_path)/tools/veridex/Android.mk
Dave Allisonf4b80bc2014-05-14 15:41:25 -070063
Brian Carlstrom532714a2014-06-25 02:15:31 -070064ART_HOST_DEPENDENCIES := \
Richard Uhlerc5a00042016-07-01 13:10:56 -070065 $(ART_HOST_EXECUTABLES) \
66 $(ART_HOST_DEX_DEPENDENCIES) \
67 $(ART_HOST_SHARED_LIBRARY_DEPENDENCIES)
Alex Light7b497ee2017-05-25 09:54:15 -070068
69ifeq ($(ART_BUILD_HOST_DEBUG),true)
70ART_HOST_DEPENDENCIES += $(ART_HOST_SHARED_LIBRARY_DEBUG_DEPENDENCIES)
71endif
72
Brian Carlstrom532714a2014-06-25 02:15:31 -070073ART_TARGET_DEPENDENCIES := \
Roland Levillain72f67742019-03-06 15:48:08 +000074 $(ART_TARGET_DEX_DEPENDENCIES)
Alex Light7b497ee2017-05-25 09:54:15 -070075
Brian Carlstromb2793372012-03-17 18:27:16 -070076########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070077# test rules
Brian Carlstrom15803792012-03-13 00:53:08 -070078
Ian Rogersafd9acc2014-06-17 08:21:54 -070079# All the dependencies that must be built ahead of sync-ing them onto the target device.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010080TEST_ART_TARGET_SYNC_DEPS := $(ADB_EXECUTABLE)
Brian Carlstromb2793372012-03-17 18:27:16 -070081
Ian Rogersafd9acc2014-06-17 08:21:54 -070082include $(art_path)/build/Android.common_test.mk
83include $(art_path)/build/Android.gtest.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070084include $(art_path)/test/Android.run-test.mk
Andreas Gampe2fe07922014-04-21 07:50:39 -070085
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +010086TEST_ART_TARGET_SYNC_DEPS += $(ART_TEST_TARGET_GTEST_DEPENDENCIES) $(ART_TEST_TARGET_RUN_TEST_DEPENDENCIES)
Nicolas Geoffray17b1dcb2018-10-12 15:09:42 +010087
Roland Levillain57981952018-08-03 14:06:21 +010088# Make sure /system is writable on the device.
Alex Light53fc75a2015-11-20 15:35:48 -080089TEST_ART_ADB_ROOT_AND_REMOUNT := \
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010090 ($(ADB) root && \
91 $(ADB) wait-for-device remount && \
92 (($(ADB) shell touch /system/testfile && \
93 ($(ADB) shell rm /system/testfile || true)) || \
94 ($(ADB) disable-verity && \
95 $(ADB) reboot && \
96 $(ADB) wait-for-device root && \
97 $(ADB) wait-for-device remount)))
Alex Light53fc75a2015-11-20 15:35:48 -080098
Brian Carlstrom4a96b602011-07-26 16:40:23 -070099# "mm test-art" to build and run all tests on host and device
100.PHONY: test-art
101test-art: test-art-host test-art-target
Ian Rogersafd9acc2014-06-17 08:21:54 -0700102 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700103
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700104.PHONY: test-art-gtest
Brian Carlstromb2793372012-03-17 18:27:16 -0700105test-art-gtest: test-art-host-gtest test-art-target-gtest
Ian Rogersafd9acc2014-06-17 08:21:54 -0700106 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700107
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700108.PHONY: test-art-run-test
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700109test-art-run-test: test-art-host-run-test test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700110 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700111
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700112########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700113# host test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700114
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700115VIXL_TEST_DEPENDENCY :=
116# We can only run the vixl tests on 64-bit hosts (vixl testing issue) when its a
117# top-level build (to declare the vixl test rule).
Ian Rogersafd9acc2014-06-17 08:21:54 -0700118ifneq ($(HOST_PREFER_32_BIT),true)
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700119ifeq ($(ONE_SHOT_MAKEFILE),)
120VIXL_TEST_DEPENDENCY := run-vixl-tests
Andreas Gampe3c033572014-05-13 08:41:48 -0700121endif
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700122endif
123
Ian Rogersafd9acc2014-06-17 08:21:54 -0700124.PHONY: test-art-host-vixl
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700125test-art-host-vixl: $(VIXL_TEST_DEPENDENCY)
Andreas Gampe3c033572014-05-13 08:41:48 -0700126
Ian Rogersafd9acc2014-06-17 08:21:54 -0700127# "mm test-art-host" to build and run all host tests.
Brian Carlstrom934486c2011-07-12 23:42:50 -0700128.PHONY: test-art-host
Aart Bika59032f2015-07-06 17:45:30 -0700129test-art-host: test-art-host-gtest test-art-host-run-test \
130 test-art-host-vixl test-art-host-dexdump
Ian Rogersafd9acc2014-06-17 08:21:54 -0700131 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom59848da2011-07-23 20:35:19 -0700132
Ian Rogersafd9acc2014-06-17 08:21:54 -0700133# All host tests that run solely with the default compiler.
134.PHONY: test-art-host-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700135test-art-host-default: test-art-host-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700136 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
137
138# All host tests that run solely with the optimizing compiler.
139.PHONY: test-art-host-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700140test-art-host-optimizing: test-art-host-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700141 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
142
143# All host tests that run solely on the interpreter.
Ian Rogers85d9ba62013-01-16 22:32:12 -0800144.PHONY: test-art-host-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700145test-art-host-interpreter: test-art-host-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700146 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogers85d9ba62013-01-16 22:32:12 -0800147
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800148# All host tests that run solely on the jit.
149.PHONY: test-art-host-jit
150test-art-host-jit: test-art-host-run-test-jit
151 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
152
Ian Rogersafd9acc2014-06-17 08:21:54 -0700153# Primary host architecture variants:
154.PHONY: test-art-host$(ART_PHONY_TEST_HOST_SUFFIX)
155test-art-host$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(ART_PHONY_TEST_HOST_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700156 test-art-host-run-test$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700157 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb0aa9d32012-04-07 23:12:22 -0700158
Ian Rogersafd9acc2014-06-17 08:21:54 -0700159.PHONY: test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700160test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-default$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700161 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700162
Ian Rogersafd9acc2014-06-17 08:21:54 -0700163.PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700164test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700165 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb2793372012-03-17 18:27:16 -0700166
Ian Rogersafd9acc2014-06-17 08:21:54 -0700167.PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700168test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700169 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700170
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800171.PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX)
172test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUFFIX)
173 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
174
Ian Rogersafd9acc2014-06-17 08:21:54 -0700175# Secondary host architecture variants:
176ifneq ($(HOST_PREFER_32_BIT),true)
177.PHONY: test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
178test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(2ND_ART_PHONY_TEST_HOST_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700179 test-art-host-run-test$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700180 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700181
Ian Rogersafd9acc2014-06-17 08:21:54 -0700182.PHONY: test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700183test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700184 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes5511f212011-08-12 18:07:45 -0700185
Ian Rogersafd9acc2014-06-17 08:21:54 -0700186.PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700187test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700188 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Nicolas Geoffray3a505222014-05-26 16:40:55 +0100189
Ian Rogersafd9acc2014-06-17 08:21:54 -0700190.PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700191test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700192 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800193
194.PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
195test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
196 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Andreas Gampe2fe07922014-04-21 07:50:39 -0700197endif
Brian Carlstrome24fa612011-09-29 00:53:55 -0700198
Aart Bik3e40f4a2015-07-07 17:09:41 -0700199# Dexdump/list regression test.
Aart Bika59032f2015-07-06 17:45:30 -0700200.PHONY: test-art-host-dexdump
David Sehr4f215d12019-04-03 09:28:21 -0700201test-art-host-dexdump: $(addprefix $(HOST_OUT_EXECUTABLES)/, dexdump dexlist)
Ying Wang882a4f32015-07-08 14:09:10 -0700202 ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests
Aart Bika59032f2015-07-06 17:45:30 -0700203
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700204########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700205# target test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700206
Ian Rogersafd9acc2014-06-17 08:21:54 -0700207# "mm test-art-target" to build and run all target tests.
208.PHONY: test-art-target
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700209test-art-target: test-art-target-gtest test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700210 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
211
212# All target tests that run solely with the default compiler.
213.PHONY: test-art-target-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700214test-art-target-default: test-art-target-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700215 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
216
217# All target tests that run solely with the optimizing compiler.
218.PHONY: test-art-target-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700219test-art-target-optimizing: test-art-target-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700220 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
221
222# All target tests that run solely on the interpreter.
223.PHONY: test-art-target-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700224test-art-target-interpreter: test-art-target-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700225 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
226
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800227# All target tests that run solely on the jit.
228.PHONY: test-art-target-jit
229test-art-target-jit: test-art-target-run-test-jit
230 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
231
Ian Rogersafd9acc2014-06-17 08:21:54 -0700232# Primary target architecture variants:
233.PHONY: test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX)
234test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(ART_PHONY_TEST_TARGET_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700235 test-art-target-run-test$(ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700236 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
237
238.PHONY: test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700239test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-default$(ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700240 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
241
242.PHONY: test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700243test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700244 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
245
246.PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700247test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700248 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
249
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800250.PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
251test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
252 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
253
Ian Rogersafd9acc2014-06-17 08:21:54 -0700254# Secondary target architecture variants:
Dan Willemsen5d2dbf82018-04-11 12:31:11 -0700255ifdef 2ND_ART_PHONY_TEST_TARGET_SUFFIX
Ian Rogersafd9acc2014-06-17 08:21:54 -0700256.PHONY: test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
257test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700258 test-art-target-run-test$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700259 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
260
261.PHONY: test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700262test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700263 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
264
265.PHONY: test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700266test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700267 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
268
269.PHONY: test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700270test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700271 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800272
273.PHONY: test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
274test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
275 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700276endif
277
Yo Chiang04bc7252020-08-05 19:06:10 +0800278#######################
279# Reset LOCAL_PATH because previous includes may override its value.
280# Keep this after all "include $(art_path)/..." are done, and before any
281# "include $(BUILD_...)".
282LOCAL_PATH := $(art_path)
Dan Willemsencd8a0572016-09-16 17:11:36 -0700283
Andreas Gampe760a58f2017-06-22 15:21:09 -0700284#######################
Martin Stjernholm801f6a72020-10-12 15:58:43 +0100285# ART APEX autoselect
Roland Levillain53058802018-11-14 17:32:18 +0000286
287include $(CLEAR_VARS)
Roland Levillaine56607a2018-11-16 19:40:25 +0000288
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100289# The ART APEX comes in three flavors:
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100290# - the release module (`com.android.art`), containing only "release"
291# artifacts;
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100292# - the debug module (`com.android.art.debug`), containing both
Roland Levillainf0b1de82019-07-02 19:25:58 +0100293# "release" and "debug" artifacts, as well as additional tools;
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100294# - the testing module (`com.android.art.testing`), containing
Roland Levillainf0b1de82019-07-02 19:25:58 +0100295# both "release" and "debug" artifacts, as well as additional tools
296# and ART gtests).
Roland Levillaine56607a2018-11-16 19:40:25 +0000297#
Martin Stjernholm801f6a72020-10-12 15:58:43 +0100298# `com.android.art-autoselect` is an "alias" for either the release or the debug
299# module. By default, "user" build variants contain the release module, while
300# "userdebug" and "eng" build variants contain the debug module. However, if
301# `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is defined, it overrides the previous
302# logic:
Roland Levillaine56607a2018-11-16 19:40:25 +0000303# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `false`, the
304# build will include the release module (whatever the build
305# variant);
306# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `true`, the
307# build will include the debug module (whatever the build variant).
308
309art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
310ifneq (false,$(art_target_include_debug_build))
311 ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
312 art_target_include_debug_build := true
313 endif
314endif
315ifeq (true,$(art_target_include_debug_build))
316 # Module with both release and debug variants, as well as
317 # additional tools.
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100318 TARGET_ART_APEX := $(DEBUG_ART_APEX)
Jiyong Park1410e9f2019-02-02 04:18:23 +0000319 APEX_TEST_MODULE := art-check-debug-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000320else
321 # Release module (without debug variants nor tools).
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100322 TARGET_ART_APEX := $(RELEASE_ART_APEX)
Jiyong Park1410e9f2019-02-02 04:18:23 +0000323 APEX_TEST_MODULE := art-check-release-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000324endif
325
Martin Stjernholm801f6a72020-10-12 15:58:43 +0100326LOCAL_MODULE := com.android.art-autoselect
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100327LOCAL_REQUIRED_MODULES := $(TARGET_ART_APEX)
Roland Levillaine56607a2018-11-16 19:40:25 +0000328
329# Clear locally used variable.
330art_target_include_debug_build :=
331
Roland Levillain53058802018-11-14 17:32:18 +0000332include $(BUILD_PHONY_PACKAGE)
333
Dan Willemsenb9a05b02019-04-02 16:13:14 -0700334include $(CLEAR_VARS)
Martin Stjernholm801f6a72020-10-12 15:58:43 +0100335LOCAL_MODULE := com.android.art-autoselect
Dan Willemsenb9a05b02019-04-02 16:13:14 -0700336LOCAL_IS_HOST_MODULE := true
337ifneq ($(HOST_OS),darwin)
338 LOCAL_REQUIRED_MODULES += $(APEX_TEST_MODULE)
339endif
340include $(BUILD_PHONY_PACKAGE)
341
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100342# Create canonical name -> file name symlink in the symbol directory for the
343# debug APEX. The symbol files for it are installed to
344# $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art.debug. However, since it's
345# available via /apex/com.android.art at runtime, create a symlink so that
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100346# $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art is linked to
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100347# $(TARGET_OUT_UNSTRIPPED)/apex/$(TARGET_ART_APEX). We skip this for the release
348# APEX which has com.android.art as $(TARGET_ART_APEX). Note that installation
349# of the symlink is triggered by the apex_manifest.pb file which is the file
350# that is guaranteed to be created regardless of the value of
351# TARGET_FLATTEN_APEX.
Jiyong Park72da9852019-03-21 15:01:11 +0900352ifeq ($(TARGET_FLATTEN_APEX),true)
Jooyung Hanafaa4572019-11-12 13:03:50 +0900353art_apex_manifest_file := $(PRODUCT_OUT)/system/apex/$(TARGET_ART_APEX)/apex_manifest.pb
Jiyong Park72da9852019-03-21 15:01:11 +0900354else
Jooyung Hanafaa4572019-11-12 13:03:50 +0900355art_apex_manifest_file := $(PRODUCT_OUT)/apex/$(TARGET_ART_APEX)/apex_manifest.pb
Jiyong Park72da9852019-03-21 15:01:11 +0900356endif
357
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100358art_apex_symlink_timestamp := $(call intermediates-dir-for,FAKE,com.android.art)/symlink.timestamp
359$(art_apex_manifest_file): $(art_apex_symlink_timestamp)
360$(art_apex_manifest_file): PRIVATE_LINK_NAME := $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art
361$(art_apex_symlink_timestamp):
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100362ifeq ($(TARGET_ART_APEX),com.android.art)
363 $(hide) if [ -L $(PRIVATE_LINK_NAME) ]; then rm -f $(PRIVATE_LINK_NAME); fi
364else
Jiyong Park055cf9a2019-04-30 13:11:11 +0900365 $(hide) mkdir -p $(dir $(PRIVATE_LINK_NAME))
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100366 $(hide) rm -rf $(PRIVATE_LINK_NAME)
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100367 $(hide) ln -sf $(TARGET_ART_APEX) $(PRIVATE_LINK_NAME)
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100368endif
Jiyong Park055cf9a2019-04-30 13:11:11 +0900369 $(hide) touch $@
Jingwen Chene3920c62020-09-23 05:36:03 +0000370$(art_apex_symlink_timestamp): .KATI_SYMLINK_OUTPUTS := $(PRIVATE_LINK_NAME)
Jiyong Park72da9852019-03-21 15:01:11 +0900371
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100372art_apex_manifest_file :=
Roland Levillain53058802018-11-14 17:32:18 +0000373
374#######################
Andreas Gampe760a58f2017-06-22 15:21:09 -0700375# Fake packages for ART
376
377# The art-runtime package depends on the core ART libraries and binaries. It exists so we can
378# manipulate the set of things shipped, e.g., add debug versions and so on.
379
380include $(CLEAR_VARS)
381LOCAL_MODULE := art-runtime
382
383# Base requirements.
384LOCAL_REQUIRED_MODULES := \
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100385 dalvikvm.com.android.art \
386 dex2oat.com.android.art \
387 dexoptanalyzer.com.android.art \
388 libart.com.android.art \
389 libart-compiler.com.android.art \
390 libopenjdkjvm.com.android.art \
391 libopenjdkjvmti.com.android.art \
392 profman.com.android.art \
393 libadbconnection.com.android.art \
394 libperfetto_hprof.com.android.art \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700395
Andreas Gampeb4949032017-06-22 15:24:41 -0700396# Potentially add in debug variants:
397#
398# * We will never add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = false.
399# * We will always add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = true.
400# * Otherwise, we will add them by default to userdebug and eng builds.
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700401art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
402ifneq (false,$(art_target_include_debug_build))
403ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
404 art_target_include_debug_build := true
Andreas Gampeb4949032017-06-22 15:24:41 -0700405endif
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700406ifeq (true,$(art_target_include_debug_build))
Andreas Gampeb4949032017-06-22 15:24:41 -0700407LOCAL_REQUIRED_MODULES += \
Jiyong Park066dd9022019-12-19 02:11:59 +0000408 dex2oatd.com.android.art.debug \
409 dexoptanalyzerd.com.android.art.debug \
410 libartd.com.android.art.debug \
411 libartd-compiler.com.android.art.debug \
412 libopenjdkd.com.android.art.debug \
413 libopenjdkjvmd.com.android.art.debug \
414 libopenjdkjvmtid.com.android.art.debug \
415 profmand.com.android.art.debug \
416 libadbconnectiond.com.android.art.debug \
417 libperfetto_hprofd.com.android.art.debug \
Andreas Gampeb4949032017-06-22 15:24:41 -0700418
419endif
420endif
421
Andreas Gampe760a58f2017-06-22 15:21:09 -0700422include $(BUILD_PHONY_PACKAGE)
423
Orion Hodson5cb98a92019-03-25 15:07:16 +0000424# The art-tools package depends on helpers and tools that are useful for developers. Similar
425# dependencies exist for the APEX builds for these tools (see build/apex/Android.bp).
Andreas Gampe760a58f2017-06-22 15:21:09 -0700426
Yo Chiange492f7e2020-08-07 04:22:18 +0000427ifneq ($(HOST_OS),darwin)
Andreas Gampe760a58f2017-06-22 15:21:09 -0700428include $(CLEAR_VARS)
429LOCAL_MODULE := art-tools
Orion Hodson362e9f22019-03-28 09:30:20 +0000430LOCAL_IS_HOST_MODULE := true
431LOCAL_REQUIRED_MODULES := \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700432 ahat \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700433 dexdump \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700434 hprof-conv \
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000435
436# A subset of the tools are disabled when HOST_PREFER_32_BIT is defined as make reports that
437# they are not supported on host (b/129323791). This is likely due to art_apex disabling host
438# APEX builds when HOST_PREFER_32_BIT is set (b/120617876).
439ifneq ($(HOST_PREFER_32_BIT),true)
Orion Hodson362e9f22019-03-28 09:30:20 +0000440LOCAL_REQUIRED_MODULES += \
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000441 dexdiag \
442 dexlist \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700443 oatdump \
444
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000445endif
446
Andreas Gampe760a58f2017-06-22 15:21:09 -0700447include $(BUILD_PHONY_PACKAGE)
Yo Chiange492f7e2020-08-07 04:22:18 +0000448endif # HOST_OS != darwin
Andreas Gampe760a58f2017-06-22 15:21:09 -0700449
Andreas Gampe10edbb12016-01-06 17:59:49 -0800450####################################################################################################
451# Fake packages to ensure generation of libopenjdkd when one builds with mm/mmm/mmma.
452#
453# The library is required for starting a runtime in debug mode, but libartd does not depend on it
454# (dependency cycle otherwise).
455#
456# Note: * As the package is phony to create a dependency the package name is irrelevant.
457# * We make MULTILIB explicit to "both," just to state here that we want both libraries on
458# 64-bit systems, even if it is the default.
459
460# ART on the host.
Yo Chiange492f7e2020-08-07 04:22:18 +0000461ifneq ($(HOST_OS),darwin)
Andreas Gampe10edbb12016-01-06 17:59:49 -0800462ifeq ($(ART_BUILD_HOST_DEBUG),true)
463include $(CLEAR_VARS)
464LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency
465LOCAL_MULTILIB := both
466LOCAL_REQUIRED_MODULES := libopenjdkd
467LOCAL_IS_HOST_MODULE := true
468include $(BUILD_PHONY_PACKAGE)
469endif
Yo Chiange492f7e2020-08-07 04:22:18 +0000470endif # HOST_OS != darwin
Andreas Gampe10edbb12016-01-06 17:59:49 -0800471
Brian Carlstrom76aa0c02011-10-11 15:29:43 -0700472########################################################################
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700473# "m build-art" for quick minimal build
474.PHONY: build-art
475build-art: build-art-host build-art-target
476
Nicolas Geoffrayc69b3f82020-06-22 12:33:38 +0000477# For host, we extract the ICU data from the apex and install it to HOST_OUT/I18N_APEX.
Nicolas Geoffray15259602020-07-30 09:31:15 +0100478$(HOST_I18N_DATA): $(TARGET_OUT)/apex/$(I18N_APEX).apex $(HOST_OUT)/bin/deapexer
Nicolas Geoffrayc69b3f82020-06-22 12:33:38 +0000479 $(call extract-from-apex,$(I18N_APEX))
Martin Stjernholm76228ff2020-07-16 22:17:09 +0100480 rm -rf $(HOST_OUT)/$(I18N_APEX)
Nicolas Geoffrayc69b3f82020-06-22 12:33:38 +0000481 mkdir -p $(HOST_OUT)/$(I18N_APEX)/
482 cp -R $(TARGET_OUT)/apex/$(I18N_APEX)/etc/ $(HOST_OUT)/$(I18N_APEX)/
Martin Stjernholm76228ff2020-07-16 22:17:09 +0100483 touch $@
Nicolas Geoffrayc69b3f82020-06-22 12:33:38 +0000484
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700485.PHONY: build-art-host
Nicolas Geoffray15259602020-07-30 09:31:15 +0100486build-art-host: $(HOST_OUT_EXECUTABLES)/art $(ART_HOST_DEPENDENCIES) $(HOST_CORE_IMG_OUTS) $(HOST_I18N_DATA)
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700487
488.PHONY: build-art-target
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700489build-art-target: $(TARGET_OUT_EXECUTABLES)/art $(ART_TARGET_DEPENDENCIES) $(TARGET_CORE_IMG_OUTS)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000490
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000491PRIVATE_ART_APEX_DEPENDENCY_FILES := \
492 bin/dalvikvm32 \
493 bin/dalvikvm64 \
494 bin/dalvikvm \
Nicolas Geoffrayec64f202020-04-20 15:05:54 +0100495 bin/dex2oat32 \
496 bin/dex2oat64 \
Orion Hodsone89ffab2020-01-08 18:36:44 +0000497 bin/dexdump \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000498
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100499PRIVATE_ART_APEX_DEPENDENCY_LIBS := \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000500 lib/libadbconnection.so \
Roland Levillain95e03032019-03-26 17:00:28 +0000501 lib/libandroidio.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000502 lib/libartbase.so \
503 lib/libart-compiler.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000504 lib/libart-dexlayout.so \
505 lib/libart-disassembler.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000506 lib/libartpalette.so \
507 lib/libart.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100508 lib/libbacktrace.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000509 lib/libdexfile_external.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100510 lib/libdexfile_support.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000511 lib/libdexfile.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000512 lib/libdt_fd_forward.so \
513 lib/libdt_socket.so \
514 lib/libexpat.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000515 lib/libjavacore.so \
516 lib/libjdwp.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100517 lib/liblzma.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000518 lib/libmeminfo.so \
519 lib/libnativebridge.so \
520 lib/libnativehelper.so \
521 lib/libnativeloader.so \
522 lib/libnpt.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000523 lib/libopenjdkjvm.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000524 lib/libopenjdkjvmti.so \
525 lib/libopenjdk.so \
526 lib/libpac.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000527 lib/libprocinfo.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000528 lib/libprofile.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100529 lib/libsigchain.so \
530 lib/libunwindstack.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000531 lib/libvixl.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100532 lib/libziparchive.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000533 lib64/libadbconnection.so \
Roland Levillain95e03032019-03-26 17:00:28 +0000534 lib64/libandroidio.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000535 lib64/libartbase.so \
536 lib64/libart-compiler.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000537 lib64/libart-dexlayout.so \
538 lib64/libart-disassembler.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000539 lib64/libartpalette.so \
540 lib64/libart.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100541 lib64/libbacktrace.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000542 lib64/libdexfile_external.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100543 lib64/libdexfile_support.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000544 lib64/libdexfile.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000545 lib64/libdt_fd_forward.so \
546 lib64/libdt_socket.so \
547 lib64/libexpat.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000548 lib64/libjavacore.so \
549 lib64/libjdwp.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100550 lib64/liblzma.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000551 lib64/libmeminfo.so \
552 lib64/libnativebridge.so \
553 lib64/libnativehelper.so \
554 lib64/libnativeloader.so \
555 lib64/libnpt.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000556 lib64/libopenjdkjvm.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000557 lib64/libopenjdkjvmti.so \
558 lib64/libopenjdk.so \
559 lib64/libpac.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000560 lib64/libprocinfo.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000561 lib64/libprofile.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100562 lib64/libsigchain.so \
563 lib64/libunwindstack.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000564 lib64/libvixl.so \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100565 lib64/libziparchive.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000566
Martin Stjernholm4bb9f672020-05-19 01:33:47 +0100567PRIVATE_RUNTIME_APEX_DEPENDENCY_FILES := \
568 bin/linker \
569 bin/linker64 \
570 lib/bionic/libc.so \
571 lib/bionic/libdl.so \
572 lib/bionic/libdl_android.so \
573 lib/bionic/libm.so \
574 lib64/bionic/libc.so \
575 lib64/bionic/libdl.so \
576 lib64/bionic/libdl_android.so \
577 lib64/bionic/libm.so \
578
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000579PRIVATE_CONSCRYPT_APEX_DEPENDENCY_LIBS := \
580 lib/libcrypto.so \
581 lib/libjavacrypto.so \
582 lib/libssl.so \
583 lib64/libcrypto.so \
584 lib64/libjavacrypto.so \
585 lib64/libssl.so \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000586
Victor Changd20e51d2020-05-05 16:01:19 +0100587PRIVATE_I18N_APEX_DEPENDENCY_LIBS := \
Victor Chang8b247622020-09-22 21:48:15 +0100588 lib/libicu.so \
Victor Changd20e51d2020-05-05 16:01:19 +0100589 lib/libicui18n.so \
590 lib/libicu_jni.so \
591 lib/libicuuc.so \
Victor Chang8b247622020-09-22 21:48:15 +0100592 lib64/libicu.so \
Victor Changd20e51d2020-05-05 16:01:19 +0100593 lib64/libicui18n.so \
594 lib64/libicu_jni.so \
595 lib64/libicuuc.so \
596
Martin Stjernholmad71c902020-05-19 00:33:04 +0100597# Extracts files from an APEX into a location. The APEX can be either a .apex
598# file in $(TARGET_OUT)/apex, or a directory in the same location. Files are
599# extracted to $(TARGET_OUT) with the same relative paths as under the APEX
600# root.
601# $(1): APEX base name
602# $(2): List of files to extract, with paths relative to the APEX root
Martin Stjernholm4d552152020-05-19 16:49:43 +0100603#
604# "cp -d" below doesn't work on Darwin, but this is only used for Golem builds
605# and won't run on mac anyway.
Martin Stjernholmad71c902020-05-19 00:33:04 +0100606define extract-from-apex
607 apex_root=$(TARGET_OUT)/apex && \
608 apex_file=$$apex_root/$(1).apex && \
609 apex_dir=$$apex_root/$(1) && \
610 if [ -f $$apex_file ]; then \
611 rm -rf $$apex_dir && \
612 mkdir -p $$apex_dir && \
613 debugfs=$(HOST_OUT)/bin/debugfs_static && \
614 $(HOST_OUT)/bin/deapexer --debugfs_path $$debugfs extract $$apex_file $$apex_dir; \
615 fi && \
616 for f in $(2); do \
617 sf=$$apex_dir/$$f && \
618 df=$(TARGET_OUT)/$$f && \
Martin Stjernholm4d552152020-05-19 16:49:43 +0100619 if [ -f $$sf -o -h $$sf ]; then \
Martin Stjernholmad71c902020-05-19 00:33:04 +0100620 mkdir -p $$(dirname $$df) && \
621 cp -fd $$sf $$df; \
622 fi || exit 1; \
623 done
624endef
625
Martin Stjernholm4bb9f672020-05-19 01:33:47 +0100626# Copy or extract some required files from APEXes to the `system` (TARGET_OUT)
627# directory. This is dangerous as these files could inadvertently stay in this
628# directory and be included in a system image.
Roland Levillainc088b2e2019-04-02 18:18:16 +0100629#
Roland Levillain72f67742019-03-06 15:48:08 +0000630# This target is only used by Golem now.
631#
Orion Hodsone89ffab2020-01-08 18:36:44 +0000632# NB Android build does not use cp from:
633# $ANDROID_BUILD_TOP/prebuilts/build-tools/path/{linux-x86,darwin-x86}
634# which has a non-standard set of command-line flags.
635#
Roland Levillain72f67742019-03-06 15:48:08 +0000636# TODO(b/129332183): Remove this when Golem has full support for the
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100637# ART APEX.
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000638.PHONY: standalone-apex-files
Nicolas Geoffrayd5c1d8a2020-04-29 11:10:13 +0100639standalone-apex-files: deapexer \
Nicolas Geoffrayec64f202020-04-20 15:05:54 +0100640 $(RELEASE_ART_APEX) \
Martin Stjernholm4bb9f672020-05-19 01:33:47 +0100641 $(RUNTIME_APEX) \
Victor Changd20e51d2020-05-05 16:01:19 +0100642 $(CONSCRYPT_APEX) \
643 $(I18N_APEX)
Martin Stjernholmad71c902020-05-19 00:33:04 +0100644 $(call extract-from-apex,$(RELEASE_ART_APEX),\
645 $(PRIVATE_ART_APEX_DEPENDENCY_LIBS) $(PRIVATE_ART_APEX_DEPENDENCY_FILES))
Martin Stjernholm4bb9f672020-05-19 01:33:47 +0100646 # The Runtime APEX has the Bionic libs in ${LIB}/bionic subdirectories,
647 # so we need to move them up a level after extraction.
Nicolas Geoffray402c7dd2020-08-17 14:13:20 +0100648 # Also, platform libraries are installed in prebuilts, so copy them over.
Martin Stjernholm4bb9f672020-05-19 01:33:47 +0100649 $(call extract-from-apex,$(RUNTIME_APEX),\
650 $(PRIVATE_RUNTIME_APEX_DEPENDENCY_FILES)) && \
651 for libdir in $(TARGET_OUT)/lib $(TARGET_OUT)/lib64; do \
652 if [ -d $$libdir/bionic ]; then \
653 mv -f $$libdir/bionic/*.so $$libdir; \
654 fi || exit 1; \
Nicolas Geoffray402c7dd2020-08-17 14:13:20 +0100655 done && \
656 for libdir in $(TARGET_OUT)/lib $(TARGET_OUT)/lib64; do \
657 if [ -d $$libdir ]; then \
658 cp prebuilts/runtime/mainline/platform/impl/$(TARGET_ARCH)/*.so $$libdir; \
659 fi || exit 1; \
Martin Stjernholm4bb9f672020-05-19 01:33:47 +0100660 done
Martin Stjernholmad71c902020-05-19 00:33:04 +0100661 $(call extract-from-apex,$(CONSCRYPT_APEX),\
662 $(PRIVATE_CONSCRYPT_APEX_DEPENDENCY_LIBS))
663 $(call extract-from-apex,$(I18N_APEX),\
664 $(PRIVATE_I18N_APEX_DEPENDENCY_LIBS))
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000665
666########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100667# Phony target for only building what go/lem requires for pushing ART on /data.
Nicolas Geoffrayab4825d2018-02-05 16:12:52 +0000668
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100669.PHONY: build-art-target-golem
Igor Murashkin017efa82016-09-22 15:46:29 -0700670# Also include libartbenchmark, we always include it when running golem.
Nicolas Geoffraye137a212016-12-08 13:49:54 +0000671# libstdc++ is needed when building for ART_TARGET_LINUX.
Roland Levillaind801a7b2019-05-01 14:59:00 +0100672
Martin Stjernholm4bb9f672020-05-19 01:33:47 +0100673# Also include the Bionic libraries (libc, libdl, libdl_android, libm) and
674# linker.
Roland Levillain40890c12019-01-13 22:48:38 +0000675#
Roland Levillain96905422019-06-28 17:05:28 +0100676# TODO(b/129332183): Remove this when Golem has full support for the
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100677# ART APEX.
Roland Levillaind801a7b2019-05-01 14:59:00 +0100678
679# Also include:
Neil Fuller90ffe122019-06-06 17:25:48 +0100680# - a copy of the time zone data prebuilt files in
681# /system/etc/tzdata_module/etc/tz and /system/etc/tzdata_module/etc/icu
682# on target, (see modules `tzdata-art-test-tzdata`,
683# `tzlookup.xml-art-test-tzdata`, and `tz_version-art-test-tzdata`, and
684# `icu_overlay-art-test-tzdata`)
685# so that they can be found even if the Time Zone Data APEX is not available,
686# by setting the environment variable `ART_TEST_ANDROID_TZDATA_ROOT`
687# to "/system/etc/tzdata_module" on device. This is a temporary change needed
688# until Golem fully supports the Time Zone Data APEX.
Roland Levillaind801a7b2019-05-01 14:59:00 +0100689#
Roland Levillain96905422019-06-28 17:05:28 +0100690# TODO(b/129332183): Remove this when Golem has full support for the
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100691# ART APEX (and TZ Data APEX).
Roland Levillain96905422019-06-28 17:05:28 +0100692
Igor Murashkin017efa82016-09-22 15:46:29 -0700693ART_TARGET_SHARED_LIBRARY_BENCHMARK := $(TARGET_OUT_SHARED_LIBRARIES)/libartbenchmark.so
Nicolas Geoffray402c7dd2020-08-17 14:13:20 +0100694ART_TARGET_SHARED_LIBRARY_PALETTE_DEPENDENCIES := \
695 $(TARGET_OUT_SHARED_LIBRARIES)/libcutils.so \
696 $(TARGET_OUT_SHARED_LIBRARIES)/libprocessgroup.so \
697 $(TARGET_OUT_SHARED_LIBRARIES)/libtombstoned_client.so
698
Nicolas Geoffrayec64f202020-04-20 15:05:54 +0100699build-art-target-golem: $(RELEASE_ART_APEX) com.android.runtime $(CONSCRYPT_APEX) \
Nicolas Geoffray51216912017-03-16 12:39:50 +0000700 $(TARGET_OUT_EXECUTABLES)/art \
Nicolas Geoffraye84f53e2020-05-15 16:50:17 +0100701 $(TARGET_OUT_EXECUTABLES)/dex2oat_wrapper \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100702 $(TARGET_OUT)/etc/public.libraries.txt \
Igor Murashkin017efa82016-09-22 15:46:29 -0700703 $(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \
Nicolas Geoffray402c7dd2020-08-17 14:13:20 +0100704 $(ART_TARGET_SHARED_LIBRARY_PALETTE_DEPENDENCIES) \
Nicolas Geoffray11303f22020-06-26 13:53:19 +0100705 $(TARGET_OUT_SHARED_LIBRARIES)/libz.so \
Martin Stjernholmc6165302020-09-23 10:48:55 +0100706 $(TARGET_OUT_SHARED_LIBRARIES)/liblz4.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000707 libartpalette-system \
Neil Fuller90ffe122019-06-06 17:25:48 +0100708 tzdata-art-test-tzdata tzlookup.xml-art-test-tzdata \
709 tz_version-art-test-tzdata icu_overlay-art-test-tzdata \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000710 standalone-apex-files
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100711 # remove debug libraries from public.libraries.txt because golem builds
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000712 # won't have it.
Nicolas Geoffray3bf94292018-02-04 14:48:34 +0000713 sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000714 sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100715 sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray763a14a2018-05-21 13:16:51 +0100716 sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100717
718########################################################################
Igor Murashkin017efa82016-09-22 15:46:29 -0700719# Phony target for building what go/lem requires on host.
720.PHONY: build-art-host-golem
721# Also include libartbenchmark, we always include it when running golem.
722ART_HOST_SHARED_LIBRARY_BENCHMARK := $(ART_HOST_OUT_SHARED_LIBRARIES)/libartbenchmark.so
723build-art-host-golem: build-art-host \
Nicolas Geoffraye84f53e2020-05-15 16:50:17 +0100724 $(ART_HOST_SHARED_LIBRARY_BENCHMARK) \
725 $(HOST_OUT_EXECUTABLES)/dex2oat_wrapper
Igor Murashkin017efa82016-09-22 15:46:29 -0700726
727########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100728# Phony target for building what go/lem requires for syncing /system to target.
729.PHONY: build-art-unbundled-golem
Ulya Trafimovichfb41d422020-04-30 11:04:23 +0100730art_apex_jars := $(foreach pair,$(ART_APEX_JARS), $(call word-colon,2,$(pair)))
731build-art-unbundled-golem: art-runtime linker oatdump $(art_apex_jars) conscrypt crash_dump
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100732
733########################################################################
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100734# Rules for building all dependencies for tests.
735
736.PHONY: build-art-host-tests
Yohann Roussel05b91252015-12-09 12:02:46 +0100737build-art-host-tests: build-art-host $(TEST_ART_RUN_TEST_DEPENDENCIES) $(ART_TEST_HOST_RUN_TEST_DEPENDENCIES) $(ART_TEST_HOST_GTEST_DEPENDENCIES) | $(TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES)
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100738
739.PHONY: build-art-target-tests
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +0100740build-art-target-tests: build-art-target $(TEST_ART_RUN_TEST_DEPENDENCIES) $(ART_TEST_TARGET_RUN_TEST_DEPENDENCIES) $(ART_TEST_TARGET_GTEST_DEPENDENCIES) | $(TEST_ART_RUN_TEST_ORDERONLY_DEPENDENCIES)
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100741
742########################################################################
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700743# targets to switch back and forth from libdvm to libart
744
745.PHONY: use-art
746use-art:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100747 $(ADB) root
748 $(ADB) wait-for-device shell stop
749 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
750 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700751
752.PHONY: use-artd
753use-artd:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100754 $(ADB) root
755 $(ADB) wait-for-device shell stop
756 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
757 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700758
759.PHONY: use-dalvik
760use-dalvik:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100761 $(ADB) root
762 $(ADB) wait-for-device shell stop
763 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so
764 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800765
766.PHONY: use-art-full
767use-art-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100768 $(ADB) root
769 $(ADB) wait-for-device shell stop
770 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
771 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
772 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
773 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
774 $(ADB) shell setprop dalvik.vm.usejit false
775 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800776
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700777.PHONY: use-artd-full
778use-artd-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100779 $(ADB) root
780 $(ADB) wait-for-device shell stop
781 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
782 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
783 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
784 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
785 $(ADB) shell setprop dalvik.vm.usejit false
786 $(ADB) shell start
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700787
Mathieu Chartierd71795b2015-07-14 16:59:23 -0700788.PHONY: use-art-jit
789use-art-jit:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100790 $(ADB) root
791 $(ADB) wait-for-device shell stop
792 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
793 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-at-runtime"
794 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime"
795 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
796 $(ADB) shell setprop dalvik.vm.usejit true
797 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800798
799.PHONY: use-art-interpret-only
800use-art-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100801 $(ADB) root
802 $(ADB) wait-for-device shell stop
803 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
804 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
805 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
806 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
807 $(ADB) shell setprop dalvik.vm.usejit false
808 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700809
Sebastien Hertz15582b92014-07-04 10:53:22 +0200810.PHONY: use-artd-interpret-only
811use-artd-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100812 $(ADB) root
813 $(ADB) wait-for-device shell stop
814 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
815 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
816 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
817 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
818 $(ADB) shell setprop dalvik.vm.usejit false
819 $(ADB) shell start
Sebastien Hertz15582b92014-07-04 10:53:22 +0200820
Jeff Hao4a200f52014-04-01 14:58:49 -0700821.PHONY: use-art-verify-none
822use-art-verify-none:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100823 $(ADB) root
824 $(ADB) wait-for-device shell stop
825 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
826 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-none"
827 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-none"
828 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
829 $(ADB) shell setprop dalvik.vm.usejit false
830 $(ADB) shell start
Jeff Hao4a200f52014-04-01 14:58:49 -0700831
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700832########################################################################
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700833
Ian Rogers8f0bbd22014-09-26 15:31:20 -0700834# Clear locally used variables.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100835TEST_ART_TARGET_SYNC_DEPS :=
Narayan Kamath0095d882016-02-12 16:09:58 +0000836
Andreas Gampefad48e72016-04-11 11:57:18 -0700837# Helper target that depends on boot image creation.
838#
839# Can be used, for example, to dump initialization failures:
840# m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt
841.PHONY: art-boot-image
Nicolas Geoffraya5880862019-03-21 09:33:37 +0000842art-boot-image: $(DEXPREOPT_IMAGE_boot_$(TARGET_ARCH))
Calin Juravlef01de112016-10-24 12:40:19 +0100843
844.PHONY: art-job-images
845art-job-images: \
Nicolas Geoffraya5880862019-03-21 09:33:37 +0000846 art-boot-image \
Calin Juravlef01de112016-10-24 12:40:19 +0100847 $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \
848 $(HOST_OUT_EXECUTABLES)/dex2oats \
849 $(HOST_OUT_EXECUTABLES)/dex2oatds \
850 $(HOST_OUT_EXECUTABLES)/profman