blob: 27f8ed5105706383f89fbff389c595c7a5d169ad [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
Andreas Gampe63fc30e2014-10-24 21:58:16 -070026include $(art_path)/build/Android.oat.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070027
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070028.PHONY: clean-oat
29clean-oat: clean-oat-host clean-oat-target
30
31.PHONY: clean-oat-host
32clean-oat-host:
Vladimir Marko589bf902019-12-12 13:19:18 +000033 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 -080034 rm -rf $(TMPDIR)/*/test-*/dalvik-cache/*
Andreas Gampe5a79fde2014-08-06 13:12:26 -070035 rm -rf $(TMPDIR)/android-data/dalvik-cache/*
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070036
37.PHONY: clean-oat-target
38clean-oat-target:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010039 $(ADB) root
40 $(ADB) wait-for-device remount
41 $(ADB) shell rm -rf $(ART_TARGET_NATIVETEST_DIR)
42 $(ADB) shell rm -rf $(ART_TARGET_TEST_DIR)
43 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*/*
Nicolas Geoffraya144c272019-02-20 12:03:53 +000044 $(ADB) shell rm -rf $(ART_DEXPREOPT_BOOT_JAR_DIR)/$(DEX2OAT_TARGET_ARCH)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010045 $(ADB) shell rm -rf system/app/$(DEX2OAT_TARGET_ARCH)
Brian Carlstromf662e062014-05-19 16:09:42 -070046ifdef TARGET_2ND_ARCH
Nicolas Geoffraya144c272019-02-20 12:03:53 +000047 $(ADB) shell rm -rf $(ART_DEXPREOPT_BOOT_JAR_DIR)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010048 $(ADB) shell rm -rf system/app/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)
Brian Carlstromf662e062014-05-19 16:09:42 -070049endif
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010050 $(ADB) shell rm -rf data/run-test/test-*/dalvik-cache/*
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070051
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070052########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070053# cpplint rules to style check art source files
54
55include $(art_path)/build/Android.cpplint.mk
56
57########################################################################
58# product rules
59
Colin Cross35235cb2016-09-09 11:19:32 -070060include $(art_path)/oatdump/Android.mk
Richard Uhlerb730b782015-07-15 16:01:58 -070061include $(art_path)/tools/ahat/Android.mk
Stephen Kyle959ffdf2014-11-28 14:27:44 +000062include $(art_path)/tools/dexfuzz/Android.mk
Nicolas Geoffrayd1ef7172018-03-28 09:16:31 +010063include $(art_path)/tools/veridex/Android.mk
Dave Allisonf4b80bc2014-05-14 15:41:25 -070064
Brian Carlstrom532714a2014-06-25 02:15:31 -070065ART_HOST_DEPENDENCIES := \
Richard Uhlerc5a00042016-07-01 13:10:56 -070066 $(ART_HOST_EXECUTABLES) \
67 $(ART_HOST_DEX_DEPENDENCIES) \
68 $(ART_HOST_SHARED_LIBRARY_DEPENDENCIES)
Alex Light7b497ee2017-05-25 09:54:15 -070069
70ifeq ($(ART_BUILD_HOST_DEBUG),true)
71ART_HOST_DEPENDENCIES += $(ART_HOST_SHARED_LIBRARY_DEBUG_DEPENDENCIES)
72endif
73
Brian Carlstrom532714a2014-06-25 02:15:31 -070074ART_TARGET_DEPENDENCIES := \
Roland Levillain72f67742019-03-06 15:48:08 +000075 $(ART_TARGET_DEX_DEPENDENCIES)
Alex Light7b497ee2017-05-25 09:54:15 -070076
Brian Carlstromb2793372012-03-17 18:27:16 -070077########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070078# test rules
Brian Carlstrom15803792012-03-13 00:53:08 -070079
Ian Rogersafd9acc2014-06-17 08:21:54 -070080# All the dependencies that must be built ahead of sync-ing them onto the target device.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010081TEST_ART_TARGET_SYNC_DEPS := $(ADB_EXECUTABLE)
Brian Carlstromb2793372012-03-17 18:27:16 -070082
Ian Rogersafd9acc2014-06-17 08:21:54 -070083include $(art_path)/build/Android.common_test.mk
84include $(art_path)/build/Android.gtest.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070085include $(art_path)/test/Android.run-test.mk
Andreas Gampe2fe07922014-04-21 07:50:39 -070086
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +010087TEST_ART_TARGET_SYNC_DEPS += $(ART_TEST_TARGET_GTEST_DEPENDENCIES) $(ART_TEST_TARGET_RUN_TEST_DEPENDENCIES)
Nicolas Geoffray17b1dcb2018-10-12 15:09:42 +010088
Roland Levillain57981952018-08-03 14:06:21 +010089# Make sure /system is writable on the device.
Alex Light53fc75a2015-11-20 15:35:48 -080090TEST_ART_ADB_ROOT_AND_REMOUNT := \
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010091 ($(ADB) root && \
92 $(ADB) wait-for-device remount && \
93 (($(ADB) shell touch /system/testfile && \
94 ($(ADB) shell rm /system/testfile || true)) || \
95 ($(ADB) disable-verity && \
96 $(ADB) reboot && \
97 $(ADB) wait-for-device root && \
98 $(ADB) wait-for-device remount)))
Alex Light53fc75a2015-11-20 15:35:48 -080099
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700100# "mm test-art" to build and run all tests on host and device
101.PHONY: test-art
102test-art: test-art-host test-art-target
Ian Rogersafd9acc2014-06-17 08:21:54 -0700103 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700104
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700105.PHONY: test-art-gtest
Brian Carlstromb2793372012-03-17 18:27:16 -0700106test-art-gtest: test-art-host-gtest test-art-target-gtest
Ian Rogersafd9acc2014-06-17 08:21:54 -0700107 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700108
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700109.PHONY: test-art-run-test
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700110test-art-run-test: test-art-host-run-test test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700111 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700112
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700113########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700114# host test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700115
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700116VIXL_TEST_DEPENDENCY :=
117# We can only run the vixl tests on 64-bit hosts (vixl testing issue) when its a
118# top-level build (to declare the vixl test rule).
Ian Rogersafd9acc2014-06-17 08:21:54 -0700119ifneq ($(HOST_PREFER_32_BIT),true)
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700120ifeq ($(ONE_SHOT_MAKEFILE),)
121VIXL_TEST_DEPENDENCY := run-vixl-tests
Andreas Gampe3c033572014-05-13 08:41:48 -0700122endif
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700123endif
124
Ian Rogersafd9acc2014-06-17 08:21:54 -0700125.PHONY: test-art-host-vixl
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700126test-art-host-vixl: $(VIXL_TEST_DEPENDENCY)
Andreas Gampe3c033572014-05-13 08:41:48 -0700127
Ian Rogersafd9acc2014-06-17 08:21:54 -0700128# "mm test-art-host" to build and run all host tests.
Brian Carlstrom934486c2011-07-12 23:42:50 -0700129.PHONY: test-art-host
Aart Bika59032f2015-07-06 17:45:30 -0700130test-art-host: test-art-host-gtest test-art-host-run-test \
131 test-art-host-vixl test-art-host-dexdump
Ian Rogersafd9acc2014-06-17 08:21:54 -0700132 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom59848da2011-07-23 20:35:19 -0700133
Ian Rogersafd9acc2014-06-17 08:21:54 -0700134# All host tests that run solely with the default compiler.
135.PHONY: test-art-host-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700136test-art-host-default: test-art-host-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700137 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
138
139# All host tests that run solely with the optimizing compiler.
140.PHONY: test-art-host-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700141test-art-host-optimizing: test-art-host-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700142 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
143
144# All host tests that run solely on the interpreter.
Ian Rogers85d9ba62013-01-16 22:32:12 -0800145.PHONY: test-art-host-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700146test-art-host-interpreter: test-art-host-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700147 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogers85d9ba62013-01-16 22:32:12 -0800148
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800149# All host tests that run solely on the jit.
150.PHONY: test-art-host-jit
151test-art-host-jit: test-art-host-run-test-jit
152 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
153
Ian Rogersafd9acc2014-06-17 08:21:54 -0700154# Primary host architecture variants:
155.PHONY: test-art-host$(ART_PHONY_TEST_HOST_SUFFIX)
156test-art-host$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(ART_PHONY_TEST_HOST_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700157 test-art-host-run-test$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700158 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb0aa9d32012-04-07 23:12:22 -0700159
Ian Rogersafd9acc2014-06-17 08:21:54 -0700160.PHONY: test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700161test-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 -0700162 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700163
Ian Rogersafd9acc2014-06-17 08:21:54 -0700164.PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700165test-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 -0700166 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb2793372012-03-17 18:27:16 -0700167
Ian Rogersafd9acc2014-06-17 08:21:54 -0700168.PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700169test-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 -0700170 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700171
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800172.PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX)
173test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUFFIX)
174 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
175
Ian Rogersafd9acc2014-06-17 08:21:54 -0700176# Secondary host architecture variants:
177ifneq ($(HOST_PREFER_32_BIT),true)
178.PHONY: test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
179test-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 -0700180 test-art-host-run-test$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700181 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700182
Ian Rogersafd9acc2014-06-17 08:21:54 -0700183.PHONY: test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700184test-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 -0700185 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes5511f212011-08-12 18:07:45 -0700186
Ian Rogersafd9acc2014-06-17 08:21:54 -0700187.PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700188test-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 -0700189 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Nicolas Geoffray3a505222014-05-26 16:40:55 +0100190
Ian Rogersafd9acc2014-06-17 08:21:54 -0700191.PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700192test-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 -0700193 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800194
195.PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
196test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
197 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Andreas Gampe2fe07922014-04-21 07:50:39 -0700198endif
Brian Carlstrome24fa612011-09-29 00:53:55 -0700199
Aart Bik3e40f4a2015-07-07 17:09:41 -0700200# Dexdump/list regression test.
Aart Bika59032f2015-07-06 17:45:30 -0700201.PHONY: test-art-host-dexdump
David Sehr4f215d12019-04-03 09:28:21 -0700202test-art-host-dexdump: $(addprefix $(HOST_OUT_EXECUTABLES)/, dexdump dexlist)
Ying Wang882a4f32015-07-08 14:09:10 -0700203 ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests
Aart Bika59032f2015-07-06 17:45:30 -0700204
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700205########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700206# target test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700207
Ian Rogersafd9acc2014-06-17 08:21:54 -0700208# "mm test-art-target" to build and run all target tests.
209.PHONY: test-art-target
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700210test-art-target: test-art-target-gtest test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700211 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
212
213# All target tests that run solely with the default compiler.
214.PHONY: test-art-target-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700215test-art-target-default: test-art-target-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700216 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
217
218# All target tests that run solely with the optimizing compiler.
219.PHONY: test-art-target-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700220test-art-target-optimizing: test-art-target-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700221 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
222
223# All target tests that run solely on the interpreter.
224.PHONY: test-art-target-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700225test-art-target-interpreter: test-art-target-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700226 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
227
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800228# All target tests that run solely on the jit.
229.PHONY: test-art-target-jit
230test-art-target-jit: test-art-target-run-test-jit
231 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
232
Ian Rogersafd9acc2014-06-17 08:21:54 -0700233# Primary target architecture variants:
234.PHONY: test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX)
235test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(ART_PHONY_TEST_TARGET_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700236 test-art-target-run-test$(ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700237 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
238
239.PHONY: test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700240test-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 -0700241 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
242
243.PHONY: test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700244test-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 -0700245 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
246
247.PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700248test-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 -0700249 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
250
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800251.PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
252test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
253 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
254
Ian Rogersafd9acc2014-06-17 08:21:54 -0700255# Secondary target architecture variants:
Dan Willemsen5d2dbf82018-04-11 12:31:11 -0700256ifdef 2ND_ART_PHONY_TEST_TARGET_SUFFIX
Ian Rogersafd9acc2014-06-17 08:21:54 -0700257.PHONY: test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
258test-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 -0700259 test-art-target-run-test$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700260 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
261
262.PHONY: test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700263test-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 -0700264 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
265
266.PHONY: test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700267test-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 -0700268 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
269
270.PHONY: test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700271test-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 -0700272 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800273
274.PHONY: test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
275test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
276 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700277endif
278
Dan Willemsencd8a0572016-09-16 17:11:36 -0700279
Andreas Gampe760a58f2017-06-22 15:21:09 -0700280#######################
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100281# ART APEX.
Roland Levillain53058802018-11-14 17:32:18 +0000282
283include $(CLEAR_VARS)
Roland Levillaine56607a2018-11-16 19:40:25 +0000284
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100285# The ART APEX comes in three flavors:
286# - the release module (`com.android.art.release`), containing
Roland Levillaine56607a2018-11-16 19:40:25 +0000287# only "release" artifacts;
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100288# - the debug module (`com.android.art.debug`), containing both
Roland Levillainf0b1de82019-07-02 19:25:58 +0100289# "release" and "debug" artifacts, as well as additional tools;
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100290# - the testing module (`com.android.art.testing`), containing
Roland Levillainf0b1de82019-07-02 19:25:58 +0100291# both "release" and "debug" artifacts, as well as additional tools
292# and ART gtests).
Roland Levillaine56607a2018-11-16 19:40:25 +0000293#
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100294# The ART APEX module (`com.android.art`) is an "alias" for either the
295# release or the debug module. By default, "user" build variants contain
296# the release module, while "userdebug" and "eng" build variants contain
297# the debug module. However, if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD`
298# is defined, it overrides the previous logic:
Roland Levillaine56607a2018-11-16 19:40:25 +0000299# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `false`, the
300# build will include the release module (whatever the build
301# variant);
302# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `true`, the
303# build will include the debug module (whatever the build variant).
304
305art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
306ifneq (false,$(art_target_include_debug_build))
307 ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
308 art_target_include_debug_build := true
309 endif
310endif
311ifeq (true,$(art_target_include_debug_build))
312 # Module with both release and debug variants, as well as
313 # additional tools.
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100314 TARGET_ART_APEX := $(DEBUG_ART_APEX)
Jiyong Park1410e9f2019-02-02 04:18:23 +0000315 APEX_TEST_MODULE := art-check-debug-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000316else
317 # Release module (without debug variants nor tools).
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100318 TARGET_ART_APEX := $(RELEASE_ART_APEX)
Jiyong Park1410e9f2019-02-02 04:18:23 +0000319 APEX_TEST_MODULE := art-check-release-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000320endif
321
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100322LOCAL_MODULE := com.android.art
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100323LOCAL_REQUIRED_MODULES := $(TARGET_ART_APEX)
Andreas Gampe57975682019-03-04 09:27:11 -0800324LOCAL_REQUIRED_MODULES += art_apex_boot_integrity
Roland Levillaine56607a2018-11-16 19:40:25 +0000325
326# Clear locally used variable.
327art_target_include_debug_build :=
328
Roland Levillain53058802018-11-14 17:32:18 +0000329include $(BUILD_PHONY_PACKAGE)
330
Dan Willemsenb9a05b02019-04-02 16:13:14 -0700331include $(CLEAR_VARS)
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100332LOCAL_MODULE := com.android.art
Dan Willemsenb9a05b02019-04-02 16:13:14 -0700333LOCAL_IS_HOST_MODULE := true
334ifneq ($(HOST_OS),darwin)
335 LOCAL_REQUIRED_MODULES += $(APEX_TEST_MODULE)
336endif
337include $(BUILD_PHONY_PACKAGE)
338
Jiyong Park72da9852019-03-21 15:01:11 +0900339# Create canonical name -> file name symlink in the symbol directory
340# The symbol files for the debug or release variant are installed to
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100341# $(TARGET_OUT_UNSTRIPPED)/$(TARGET_ART_APEX) directory. However,
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100342# since they are available via /apex/com.android.art at runtime
Jiyong Park72da9852019-03-21 15:01:11 +0900343# regardless of which variant is installed, create a symlink so that
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100344# $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art is linked to
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100345# $(TARGET_OUT_UNSTRIPPED)/apex/$(TARGET_ART_APEX).
Jooyung Hanafaa4572019-11-12 13:03:50 +0900346# Note that installation of the symlink is triggered by the apex_manifest.pb
Jiyong Park72da9852019-03-21 15:01:11 +0900347# file which is the file that is guaranteed to be created regardless of the
348# value of TARGET_FLATTEN_APEX.
349ifeq ($(TARGET_FLATTEN_APEX),true)
Jooyung Hanafaa4572019-11-12 13:03:50 +0900350art_apex_manifest_file := $(PRODUCT_OUT)/system/apex/$(TARGET_ART_APEX)/apex_manifest.pb
Jiyong Park72da9852019-03-21 15:01:11 +0900351else
Jooyung Hanafaa4572019-11-12 13:03:50 +0900352art_apex_manifest_file := $(PRODUCT_OUT)/apex/$(TARGET_ART_APEX)/apex_manifest.pb
Jiyong Park72da9852019-03-21 15:01:11 +0900353endif
354
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100355art_apex_symlink_timestamp := $(call intermediates-dir-for,FAKE,com.android.art)/symlink.timestamp
356$(art_apex_manifest_file): $(art_apex_symlink_timestamp)
357$(art_apex_manifest_file): PRIVATE_LINK_NAME := $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art
358$(art_apex_symlink_timestamp):
Jiyong Park055cf9a2019-04-30 13:11:11 +0900359 $(hide) mkdir -p $(dir $(PRIVATE_LINK_NAME))
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100360 $(hide) ln -sf $(TARGET_ART_APEX) $(PRIVATE_LINK_NAME)
Jiyong Park055cf9a2019-04-30 13:11:11 +0900361 $(hide) touch $@
Jiyong Park72da9852019-03-21 15:01:11 +0900362
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100363art_apex_manifest_file :=
Roland Levillain53058802018-11-14 17:32:18 +0000364
365#######################
Andreas Gampe760a58f2017-06-22 15:21:09 -0700366# Fake packages for ART
367
368# The art-runtime package depends on the core ART libraries and binaries. It exists so we can
369# manipulate the set of things shipped, e.g., add debug versions and so on.
370
371include $(CLEAR_VARS)
372LOCAL_MODULE := art-runtime
373
374# Base requirements.
375LOCAL_REQUIRED_MODULES := \
Jiyong Park066dd9022019-12-19 02:11:59 +0000376 dalvikvm.com.android.art.release \
377 dex2oat.com.android.art.release \
378 dexoptanalyzer.com.android.art.release \
379 libart.com.android.art.release \
380 libart-compiler.com.android.art.release \
381 libopenjdkjvm.com.android.art.release \
382 libopenjdkjvmti.com.android.art.release \
383 profman.com.android.art.release \
384 libadbconnection.com.android.art.release \
385 libperfetto_hprof.com.android.art.release \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700386
Andreas Gampeb4949032017-06-22 15:24:41 -0700387# Potentially add in debug variants:
388#
389# * We will never add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = false.
390# * We will always add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = true.
391# * Otherwise, we will add them by default to userdebug and eng builds.
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700392art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
393ifneq (false,$(art_target_include_debug_build))
394ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
395 art_target_include_debug_build := true
Andreas Gampeb4949032017-06-22 15:24:41 -0700396endif
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700397ifeq (true,$(art_target_include_debug_build))
Andreas Gampeb4949032017-06-22 15:24:41 -0700398LOCAL_REQUIRED_MODULES += \
Jiyong Park066dd9022019-12-19 02:11:59 +0000399 dex2oatd.com.android.art.debug \
400 dexoptanalyzerd.com.android.art.debug \
401 libartd.com.android.art.debug \
402 libartd-compiler.com.android.art.debug \
403 libopenjdkd.com.android.art.debug \
404 libopenjdkjvmd.com.android.art.debug \
405 libopenjdkjvmtid.com.android.art.debug \
406 profmand.com.android.art.debug \
407 libadbconnectiond.com.android.art.debug \
408 libperfetto_hprofd.com.android.art.debug \
Andreas Gampeb4949032017-06-22 15:24:41 -0700409
410endif
411endif
412
Andreas Gampe760a58f2017-06-22 15:21:09 -0700413include $(BUILD_PHONY_PACKAGE)
414
Orion Hodson5cb98a92019-03-25 15:07:16 +0000415# The art-tools package depends on helpers and tools that are useful for developers. Similar
416# dependencies exist for the APEX builds for these tools (see build/apex/Android.bp).
Andreas Gampe760a58f2017-06-22 15:21:09 -0700417
418include $(CLEAR_VARS)
419LOCAL_MODULE := art-tools
Orion Hodson362e9f22019-03-28 09:30:20 +0000420LOCAL_IS_HOST_MODULE := true
421LOCAL_REQUIRED_MODULES := \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700422 ahat \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700423 dexdump \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700424 hprof-conv \
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000425
426# A subset of the tools are disabled when HOST_PREFER_32_BIT is defined as make reports that
427# they are not supported on host (b/129323791). This is likely due to art_apex disabling host
428# APEX builds when HOST_PREFER_32_BIT is set (b/120617876).
429ifneq ($(HOST_PREFER_32_BIT),true)
Orion Hodson362e9f22019-03-28 09:30:20 +0000430LOCAL_REQUIRED_MODULES += \
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000431 dexdiag \
432 dexlist \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700433 oatdump \
434
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000435endif
436
Andreas Gampe760a58f2017-06-22 15:21:09 -0700437include $(BUILD_PHONY_PACKAGE)
438
Andreas Gampe10edbb12016-01-06 17:59:49 -0800439####################################################################################################
440# Fake packages to ensure generation of libopenjdkd when one builds with mm/mmm/mmma.
441#
442# The library is required for starting a runtime in debug mode, but libartd does not depend on it
443# (dependency cycle otherwise).
444#
445# Note: * As the package is phony to create a dependency the package name is irrelevant.
446# * We make MULTILIB explicit to "both," just to state here that we want both libraries on
447# 64-bit systems, even if it is the default.
448
449# ART on the host.
450ifeq ($(ART_BUILD_HOST_DEBUG),true)
451include $(CLEAR_VARS)
452LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency
453LOCAL_MULTILIB := both
454LOCAL_REQUIRED_MODULES := libopenjdkd
455LOCAL_IS_HOST_MODULE := true
456include $(BUILD_PHONY_PACKAGE)
457endif
458
459# ART on the target.
460ifeq ($(ART_BUILD_TARGET_DEBUG),true)
461include $(CLEAR_VARS)
462LOCAL_MODULE := art-libartd-libopenjdkd-target-dependency
463LOCAL_MULTILIB := both
464LOCAL_REQUIRED_MODULES := libopenjdkd
465include $(BUILD_PHONY_PACKAGE)
466endif
467
Brian Carlstrom76aa0c02011-10-11 15:29:43 -0700468########################################################################
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700469# "m build-art" for quick minimal build
470.PHONY: build-art
471build-art: build-art-host build-art-target
472
473.PHONY: build-art-host
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700474build-art-host: $(HOST_OUT_EXECUTABLES)/art $(ART_HOST_DEPENDENCIES) $(HOST_CORE_IMG_OUTS)
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700475
476.PHONY: build-art-target
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700477build-art-target: $(TARGET_OUT_EXECUTABLES)/art $(ART_TARGET_DEPENDENCIES) $(TARGET_CORE_IMG_OUTS)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000478
479########################################################################
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000480# Workaround for not using symbolic links for linker and bionic libraries
481# in a minimal setup (eg buildbot or golem).
482########################################################################
483
484PRIVATE_BIONIC_FILES := \
485 bin/bootstrap/linker \
486 bin/bootstrap/linker64 \
487 lib/bootstrap/libc.so \
488 lib/bootstrap/libm.so \
489 lib/bootstrap/libdl.so \
Martin Stjernholm80f1c282019-11-25 15:07:27 +0000490 lib/bootstrap/libdl_android.so \
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000491 lib64/bootstrap/libc.so \
492 lib64/bootstrap/libm.so \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000493 lib64/bootstrap/libdl.so \
Martin Stjernholm80f1c282019-11-25 15:07:27 +0000494 lib64/bootstrap/libdl_android.so \
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000495
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000496PRIVATE_ART_APEX_DEPENDENCY_FILES := \
497 bin/dalvikvm32 \
498 bin/dalvikvm64 \
499 bin/dalvikvm \
500 bin/dex2oat \
501 bin/dex2oatd \
Orion Hodsone89ffab2020-01-08 18:36:44 +0000502 bin/dexdump \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000503
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100504PRIVATE_ART_APEX_DEPENDENCY_LIBS := \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000505 lib/libadbconnectiond.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000506 lib/libadbconnection.so \
507 lib/libandroidicu.so \
Roland Levillain95e03032019-03-26 17:00:28 +0000508 lib/libandroidio.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000509 lib/libartbased.so \
510 lib/libartbase.so \
511 lib/libart-compiler.so \
512 lib/libartd-compiler.so \
513 lib/libartd-dexlayout.so \
514 lib/libartd-disassembler.so \
515 lib/libart-dexlayout.so \
516 lib/libart-disassembler.so \
517 lib/libartd.so \
518 lib/libartpalette.so \
519 lib/libart.so \
520 lib/libbacktrace.so \
521 lib/libbase.so \
522 lib/libcrypto.so \
523 lib/libdexfiled_external.so \
524 lib/libdexfiled.so \
525 lib/libdexfile_external.so \
526 lib/libdexfile.so \
527 lib/libdexfile_support.so \
528 lib/libdt_fd_forward.so \
529 lib/libdt_socket.so \
530 lib/libexpat.so \
531 lib/libicui18n.so \
532 lib/libicu_jni.so \
533 lib/libicuuc.so \
534 lib/libjavacore.so \
535 lib/libjdwp.so \
536 lib/liblzma.so \
537 lib/libmeminfo.so \
538 lib/libnativebridge.so \
539 lib/libnativehelper.so \
540 lib/libnativeloader.so \
541 lib/libnpt.so \
542 lib/libopenjdkd.so \
543 lib/libopenjdkjvmd.so \
544 lib/libopenjdkjvm.so \
545 lib/libopenjdkjvmtid.so \
546 lib/libopenjdkjvmti.so \
547 lib/libopenjdk.so \
548 lib/libpac.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000549 lib/libprocinfo.so \
550 lib/libprofiled.so \
551 lib/libprofile.so \
552 lib/libsigchain.so \
553 lib/libunwindstack.so \
554 lib/libvixld.so \
555 lib/libvixl.so \
556 lib/libziparchive.so \
557 lib/libz.so \
558 lib64/libadbconnectiond.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000559 lib64/libadbconnection.so \
560 lib64/libandroidicu.so \
Roland Levillain95e03032019-03-26 17:00:28 +0000561 lib64/libandroidio.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000562 lib64/libartbased.so \
563 lib64/libartbase.so \
564 lib64/libart-compiler.so \
565 lib64/libartd-compiler.so \
566 lib64/libartd-dexlayout.so \
567 lib64/libartd-disassembler.so \
568 lib64/libart-dexlayout.so \
569 lib64/libart-disassembler.so \
570 lib64/libartd.so \
571 lib64/libartpalette.so \
572 lib64/libart.so \
573 lib64/libbacktrace.so \
574 lib64/libbase.so \
575 lib64/libcrypto.so \
576 lib64/libdexfiled_external.so \
577 lib64/libdexfiled.so \
578 lib64/libdexfile_external.so \
579 lib64/libdexfile.so \
580 lib64/libdexfile_support.so \
581 lib64/libdt_fd_forward.so \
582 lib64/libdt_socket.so \
583 lib64/libexpat.so \
584 lib64/libicui18n.so \
585 lib64/libicu_jni.so \
586 lib64/libicuuc.so \
587 lib64/libjavacore.so \
588 lib64/libjdwp.so \
589 lib64/liblzma.so \
590 lib64/libmeminfo.so \
591 lib64/libnativebridge.so \
592 lib64/libnativehelper.so \
593 lib64/libnativeloader.so \
594 lib64/libnpt.so \
595 lib64/libopenjdkd.so \
596 lib64/libopenjdkjvmd.so \
597 lib64/libopenjdkjvm.so \
598 lib64/libopenjdkjvmtid.so \
599 lib64/libopenjdkjvmti.so \
600 lib64/libopenjdk.so \
601 lib64/libpac.so \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000602 lib64/libprocinfo.so \
603 lib64/libprofiled.so \
604 lib64/libprofile.so \
605 lib64/libsigchain.so \
606 lib64/libunwindstack.so \
607 lib64/libvixld.so \
608 lib64/libvixl.so \
609 lib64/libziparchive.so \
610 lib64/libz.so \
611
612PRIVATE_CONSCRYPT_APEX_DEPENDENCY_LIBS := \
613 lib/libcrypto.so \
614 lib/libjavacrypto.so \
615 lib/libssl.so \
616 lib64/libcrypto.so \
617 lib64/libjavacrypto.so \
618 lib64/libssl.so \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000619
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100620# Generate copies of Bionic bootstrap artifacts and ART APEX
Roland Levillain72f67742019-03-06 15:48:08 +0000621# libraries in the `system` (TARGET_OUT) directory. This is dangerous
622# as these files could inadvertently stay in this directory and be
623# included in a system image.
624#
Roland Levillainc088b2e2019-04-02 18:18:16 +0100625# Copy some libraries into `$(TARGET_OUT)/lib(64)` (the
626# `/system/lib(64)` directory to be sync'd to the target) for ART testing
627# purposes:
628# - Bionic bootstrap libraries, copied from
629# `$(TARGET_OUT)/lib(64)/bootstrap` (the `/system/lib(64)/bootstrap`
630# directory to be sync'd to the target);
Orion Hodsone89ffab2020-01-08 18:36:44 +0000631# - Programs and libraries from the ART APEX; if the product
Roland Levillainc088b2e2019-04-02 18:18:16 +0100632# to build uses flattened APEXes, these libraries are copied from
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100633# `$(TARGET_OUT)/apex/com.android.art.debug` (the flattened
634# (Debug) ART APEX directory to be sync'd to the target);
Roland Levillainc088b2e2019-04-02 18:18:16 +0100635# otherwise, they are copied from
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100636# `$(TARGET_OUT)/../apex/com.android.art.debug` (the local
637# directory under the build tree containing the (Debug) ART APEX
Roland Levillainc088b2e2019-04-02 18:18:16 +0100638# artifacts, which is not sync'd to the target).
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000639# - Libraries from the Conscrypt APEX may be loaded during golem runs.
Roland Levillainc088b2e2019-04-02 18:18:16 +0100640#
Roland Levillain72f67742019-03-06 15:48:08 +0000641# This target is only used by Golem now.
642#
Orion Hodsone89ffab2020-01-08 18:36:44 +0000643# NB Android build does not use cp from:
644# $ANDROID_BUILD_TOP/prebuilts/build-tools/path/{linux-x86,darwin-x86}
645# which has a non-standard set of command-line flags.
646#
Roland Levillain72f67742019-03-06 15:48:08 +0000647# TODO(b/129332183): Remove this when Golem has full support for the
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100648# ART APEX.
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000649.PHONY: standalone-apex-files
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000650standalone-apex-files: libc.bootstrap \
651 libdl.bootstrap \
652 libdl_android.bootstrap \
653 libm.bootstrap \
654 linker \
655 $(DEBUG_ART_APEX) \
656 $(CONSCRYPT_APEX)
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000657 for f in $(PRIVATE_BIONIC_FILES); do \
658 tf=$(TARGET_OUT)/$$f; \
659 if [ -f $$tf ]; then cp -f $$tf $$(echo $$tf | sed 's,bootstrap/,,'); fi; \
660 done
Roland Levillainc088b2e2019-04-02 18:18:16 +0100661 if [ "x$(TARGET_FLATTEN_APEX)" = xtrue ]; then \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000662 apex_orig_dir=$(TARGET_OUT)/apex; \
Roland Levillainc088b2e2019-04-02 18:18:16 +0100663 else \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000664 apex_orig_dir=""; \
Roland Levillainc088b2e2019-04-02 18:18:16 +0100665 fi; \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000666 art_apex_orig_dir=$$apex_orig_dir/$(DEBUG_ART_APEX); \
667 for f in $(PRIVATE_ART_APEX_DEPENDENCY_LIBS) $(PRIVATE_ART_APEX_DEPENDENCY_FILES); do \
Martin Stjernholm84e5bb92019-09-05 19:56:46 +0100668 tf="$$art_apex_orig_dir/$$f"; \
Orion Hodsone89ffab2020-01-08 18:36:44 +0000669 df="$(TARGET_OUT)/$$f"; \
670 if [ -f $$tf ]; then \
671 if [ -h $$df ]; then rm $$df; fi; \
672 cp -fd $$tf $$df; \
673 fi; \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000674 done; \
675 conscrypt_apex_orig_dir=$$apex_orig_dir/$(CONSCRYPT_APEX); \
676 for f in $(PRIVATE_CONSCRYPT_APEX_DEPENDENCY_LIBS); do \
677 tf="$$conscrypt_apex_orig_dir/$$f"; \
Orion Hodsone89ffab2020-01-08 18:36:44 +0000678 if [ -f $$tf ]; then cp -f $$tf $(TARGET_OUT)/$$f; fi; \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000679 done; \
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000680
681########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100682# Phony target for only building what go/lem requires for pushing ART on /data.
Nicolas Geoffrayab4825d2018-02-05 16:12:52 +0000683
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100684.PHONY: build-art-target-golem
Igor Murashkin017efa82016-09-22 15:46:29 -0700685# Also include libartbenchmark, we always include it when running golem.
Nicolas Geoffraye137a212016-12-08 13:49:54 +0000686# libstdc++ is needed when building for ART_TARGET_LINUX.
Roland Levillaind801a7b2019-05-01 14:59:00 +0100687
Martin Stjernholm80f1c282019-11-25 15:07:27 +0000688# Also include the bootstrap Bionic libraries (libc, libdl, libdl_android,
689# libm). These are required as the "main" libc, libdl, libdl_android, and libm
690# have moved to the ART APEX. This is a temporary change needed until Golem
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100691# fully supports the ART APEX.
Roland Levillain40890c12019-01-13 22:48:38 +0000692#
Roland Levillain96905422019-06-28 17:05:28 +0100693# TODO(b/129332183): Remove this when Golem has full support for the
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100694# ART APEX.
Roland Levillaind801a7b2019-05-01 14:59:00 +0100695
696# Also include:
Neil Fuller90ffe122019-06-06 17:25:48 +0100697# - a copy of the ICU prebuilt .dat file in /system/etc/icu on target
Victor Chang64611242019-07-05 16:32:41 +0100698# (see module `icu-data-art-test-i18n`); and
Martin Stjernholme58624f2019-09-20 15:53:40 +0100699# so that it can be found even if the ART APEX is not available, by setting the
700# environment variable `ART_TEST_ANDROID_ART_ROOT` to "/system" on device. This
701# is a temporary change needed until Golem fully supports the ART APEX.
Neil Fuller90ffe122019-06-06 17:25:48 +0100702#
Roland Levillain96905422019-06-28 17:05:28 +0100703# TODO(b/129332183): Remove this when Golem has full support for the
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100704# ART APEX.
Roland Levillain96905422019-06-28 17:05:28 +0100705
Neil Fuller90ffe122019-06-06 17:25:48 +0100706# Also include:
707# - a copy of the time zone data prebuilt files in
708# /system/etc/tzdata_module/etc/tz and /system/etc/tzdata_module/etc/icu
709# on target, (see modules `tzdata-art-test-tzdata`,
710# `tzlookup.xml-art-test-tzdata`, and `tz_version-art-test-tzdata`, and
711# `icu_overlay-art-test-tzdata`)
712# so that they can be found even if the Time Zone Data APEX is not available,
713# by setting the environment variable `ART_TEST_ANDROID_TZDATA_ROOT`
714# to "/system/etc/tzdata_module" on device. This is a temporary change needed
715# until Golem fully supports the Time Zone Data APEX.
Roland Levillaind801a7b2019-05-01 14:59:00 +0100716#
Roland Levillain96905422019-06-28 17:05:28 +0100717# TODO(b/129332183): Remove this when Golem has full support for the
Martin Stjernholmfb3a94b2019-07-05 22:27:36 +0100718# ART APEX (and TZ Data APEX).
Roland Levillain96905422019-06-28 17:05:28 +0100719
Igor Murashkin017efa82016-09-22 15:46:29 -0700720ART_TARGET_SHARED_LIBRARY_BENCHMARK := $(TARGET_OUT_SHARED_LIBRARIES)/libartbenchmark.so
Vladimir Markoa497a392018-09-26 10:52:50 +0100721build-art-target-golem: dex2oat dalvikvm linker libstdc++ \
Nicolas Geoffray51216912017-03-16 12:39:50 +0000722 $(TARGET_OUT_EXECUTABLES)/art \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100723 $(TARGET_OUT)/etc/public.libraries.txt \
724 $(ART_TARGET_DEX_DEPENDENCIES) \
Jiyong Park066dd9022019-12-19 02:11:59 +0000725 $(ART_DEBUG_TARGET_SHARED_LIBRARY_DEPENDENCIES) \
Igor Murashkin017efa82016-09-22 15:46:29 -0700726 $(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100727 $(TARGET_CORE_IMG_OUT_BASE).art \
Roland Levillainc3512812019-01-11 17:07:49 +0000728 $(TARGET_CORE_IMG_OUT_BASE)-interpreter.art \
Orion Hodsonc4d13ae2020-01-07 12:46:25 +0000729 libartpalette-system \
Martin Stjernholm80f1c282019-11-25 15:07:27 +0000730 libc.bootstrap libdl.bootstrap libdl_android.bootstrap libm.bootstrap \
Victor Chang64611242019-07-05 16:32:41 +0100731 icu-data-art-test-i18n \
Neil Fuller90ffe122019-06-06 17:25:48 +0100732 tzdata-art-test-tzdata tzlookup.xml-art-test-tzdata \
733 tz_version-art-test-tzdata icu_overlay-art-test-tzdata \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000734 standalone-apex-files
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100735 # remove debug libraries from public.libraries.txt because golem builds
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000736 # won't have it.
Nicolas Geoffray3bf94292018-02-04 14:48:34 +0000737 sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000738 sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100739 sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray763a14a2018-05-21 13:16:51 +0100740 sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100741
742########################################################################
Igor Murashkin017efa82016-09-22 15:46:29 -0700743# Phony target for building what go/lem requires on host.
744.PHONY: build-art-host-golem
745# Also include libartbenchmark, we always include it when running golem.
746ART_HOST_SHARED_LIBRARY_BENCHMARK := $(ART_HOST_OUT_SHARED_LIBRARIES)/libartbenchmark.so
747build-art-host-golem: build-art-host \
748 $(ART_HOST_SHARED_LIBRARY_BENCHMARK)
749
750########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100751# Phony target for building what go/lem requires for syncing /system to target.
752.PHONY: build-art-unbundled-golem
Nicolas Geoffraycf053a52017-11-15 15:10:09 +0000753build-art-unbundled-golem: art-runtime linker oatdump $(TARGET_CORE_JARS) crash_dump
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100754
755########################################################################
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100756# Rules for building all dependencies for tests.
757
758.PHONY: build-art-host-tests
Yohann Roussel05b91252015-12-09 12:02:46 +0100759build-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 +0100760
761.PHONY: build-art-target-tests
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +0100762build-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 +0100763
764########################################################################
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700765# targets to switch back and forth from libdvm to libart
766
767.PHONY: use-art
768use-art:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100769 $(ADB) root
770 $(ADB) wait-for-device shell stop
771 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
772 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700773
774.PHONY: use-artd
775use-artd:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100776 $(ADB) root
777 $(ADB) wait-for-device shell stop
778 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
779 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700780
781.PHONY: use-dalvik
782use-dalvik:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100783 $(ADB) root
784 $(ADB) wait-for-device shell stop
785 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so
786 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800787
788.PHONY: use-art-full
789use-art-full:
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 \"\"
794 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
795 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
796 $(ADB) shell setprop dalvik.vm.usejit false
797 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800798
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700799.PHONY: use-artd-full
800use-artd-full:
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 \"\"
805 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
806 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
807 $(ADB) shell setprop dalvik.vm.usejit false
808 $(ADB) shell start
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700809
Mathieu Chartierd71795b2015-07-14 16:59:23 -0700810.PHONY: use-art-jit
811use-art-jit:
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 "verify-at-runtime"
816 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime"
817 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
818 $(ADB) shell setprop dalvik.vm.usejit true
819 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800820
821.PHONY: use-art-interpret-only
822use-art-interpret-only:
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 "interpret-only"
827 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
828 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
829 $(ADB) shell setprop dalvik.vm.usejit false
830 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700831
Sebastien Hertz15582b92014-07-04 10:53:22 +0200832.PHONY: use-artd-interpret-only
833use-artd-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100834 $(ADB) root
835 $(ADB) wait-for-device shell stop
836 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
837 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
838 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
839 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
840 $(ADB) shell setprop dalvik.vm.usejit false
841 $(ADB) shell start
Sebastien Hertz15582b92014-07-04 10:53:22 +0200842
Jeff Hao4a200f52014-04-01 14:58:49 -0700843.PHONY: use-art-verify-none
844use-art-verify-none:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100845 $(ADB) root
846 $(ADB) wait-for-device shell stop
847 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
848 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-none"
849 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-none"
850 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
851 $(ADB) shell setprop dalvik.vm.usejit false
852 $(ADB) shell start
Jeff Hao4a200f52014-04-01 14:58:49 -0700853
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700854########################################################################
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700855
Ian Rogers8f0bbd22014-09-26 15:31:20 -0700856# Clear locally used variables.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100857TEST_ART_TARGET_SYNC_DEPS :=
Narayan Kamath0095d882016-02-12 16:09:58 +0000858
Andreas Gampefad48e72016-04-11 11:57:18 -0700859# Helper target that depends on boot image creation.
860#
861# Can be used, for example, to dump initialization failures:
862# m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt
863.PHONY: art-boot-image
Nicolas Geoffraya5880862019-03-21 09:33:37 +0000864art-boot-image: $(DEXPREOPT_IMAGE_boot_$(TARGET_ARCH))
Calin Juravlef01de112016-10-24 12:40:19 +0100865
866.PHONY: art-job-images
867art-job-images: \
Nicolas Geoffraya5880862019-03-21 09:33:37 +0000868 art-boot-image \
Calin Juravlef01de112016-10-24 12:40:19 +0100869 $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \
870 $(HOST_OUT_EXECUTABLES)/dex2oats \
871 $(HOST_OUT_EXECUTABLES)/dex2oatds \
872 $(HOST_OUT_EXECUTABLES)/profman