blob: 2a2a03c9df84af44ac1ac04612b037b457547a5f [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:
Andreas Gampe602b7852017-02-21 11:44:04 -080033 find $(OUT_DIR) -name "*.oat" -o -name "*.odex" -o -name "*.art" -o -name '*.vdex' | 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 := \
Richard Uhlerc5a00042016-07-01 13:10:56 -070075 $(ART_TARGET_EXECUTABLES) \
76 $(ART_TARGET_DEX_DEPENDENCIES) \
77 $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES)
Brian Carlstrom15803792012-03-13 00:53:08 -070078
Alex Light7b497ee2017-05-25 09:54:15 -070079ifeq ($(ART_BUILD_TARGET_DEBUG),true)
80ART_TARGET_DEPENDENCIES += $(ART_TARGET_SHARED_LIBRARY_DEBUG_DEPENDENCIES)
81endif
82
Brian Carlstromb2793372012-03-17 18:27:16 -070083########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070084# test rules
Brian Carlstrom15803792012-03-13 00:53:08 -070085
Ian Rogersafd9acc2014-06-17 08:21:54 -070086# All the dependencies that must be built ahead of sync-ing them onto the target device.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010087TEST_ART_TARGET_SYNC_DEPS := $(ADB_EXECUTABLE)
Brian Carlstromb2793372012-03-17 18:27:16 -070088
Ian Rogersafd9acc2014-06-17 08:21:54 -070089include $(art_path)/build/Android.common_test.mk
90include $(art_path)/build/Android.gtest.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070091include $(art_path)/test/Android.run-test.mk
Andreas Gampe2fe07922014-04-21 07:50:39 -070092
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +010093TEST_ART_TARGET_SYNC_DEPS += $(ART_TEST_TARGET_GTEST_DEPENDENCIES) $(ART_TEST_TARGET_RUN_TEST_DEPENDENCIES)
Nicolas Geoffray17b1dcb2018-10-12 15:09:42 +010094
Roland Levillain57981952018-08-03 14:06:21 +010095# Make sure /system is writable on the device.
Alex Light53fc75a2015-11-20 15:35:48 -080096TEST_ART_ADB_ROOT_AND_REMOUNT := \
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010097 ($(ADB) root && \
98 $(ADB) wait-for-device remount && \
99 (($(ADB) shell touch /system/testfile && \
100 ($(ADB) shell rm /system/testfile || true)) || \
101 ($(ADB) disable-verity && \
102 $(ADB) reboot && \
103 $(ADB) wait-for-device root && \
104 $(ADB) wait-for-device remount)))
Alex Light53fc75a2015-11-20 15:35:48 -0800105
Ian Rogersafd9acc2014-06-17 08:21:54 -0700106# Sync test files to the target, depends upon all things that must be pushed to the target.
107.PHONY: test-art-target-sync
Roland Levillain76cfe612017-10-30 13:14:28 +0000108# Check if we need to sync. In case ART_TEST_CHROOT or ART_TEST_ANDROID_ROOT
109# is not empty, the code below uses 'adb push' instead of 'adb sync',
110# which does not check if the files on the device have changed.
111# TODO: Remove support for ART_TEST_ANDROID_ROOT when it is no longer needed.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100112ifneq ($(ART_TEST_NO_SYNC),true)
Roland Levillain76cfe612017-10-30 13:14:28 +0000113# Sync system and data partitions.
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000114ifeq ($(ART_TEST_ANDROID_ROOT),)
Roland Levillain76cfe612017-10-30 13:14:28 +0000115ifeq ($(ART_TEST_CHROOT),)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700116test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
Alex Light53fc75a2015-11-20 15:35:48 -0800117 $(TEST_ART_ADB_ROOT_AND_REMOUNT)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100118 $(ADB) sync system && $(ADB) sync data
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000119else
Roland Levillain57981952018-08-03 14:06:21 +0100120# TEST_ART_ADB_ROOT_AND_REMOUNT is not needed here, as we are only
121# pushing things to the chroot dir, which is expected to be under
122# /data on the device.
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000123test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100124 $(ADB) wait-for-device
125 $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)/
126 $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/
Roland Levillain76cfe612017-10-30 13:14:28 +0000127endif
128else
129test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
130 $(TEST_ART_ADB_ROOT_AND_REMOUNT)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100131 $(ADB) wait-for-device
132 $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)$(ART_TEST_ANDROID_ROOT)
Roland Levillain76cfe612017-10-30 13:14:28 +0000133# Push the contents of the `data` dir into `$(ART_TEST_CHROOT)/data` on the device (note
134# that $(ART_TEST_CHROOT) can be empty). If `$(ART_TEST_CHROOT)/data` already exists on
135# the device, it is not overwritten, but its content is updated.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100136 $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000137endif
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100138endif
Brian Carlstrom934486c2011-07-12 23:42:50 -0700139
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700140# "mm test-art" to build and run all tests on host and device
141.PHONY: test-art
142test-art: test-art-host test-art-target
Ian Rogersafd9acc2014-06-17 08:21:54 -0700143 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700144
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700145.PHONY: test-art-gtest
Brian Carlstromb2793372012-03-17 18:27:16 -0700146test-art-gtest: test-art-host-gtest test-art-target-gtest
Ian Rogersafd9acc2014-06-17 08:21:54 -0700147 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700148
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700149.PHONY: test-art-run-test
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700150test-art-run-test: test-art-host-run-test test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700151 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700152
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700153########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700154# host test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700155
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700156VIXL_TEST_DEPENDENCY :=
157# We can only run the vixl tests on 64-bit hosts (vixl testing issue) when its a
158# top-level build (to declare the vixl test rule).
Ian Rogersafd9acc2014-06-17 08:21:54 -0700159ifneq ($(HOST_PREFER_32_BIT),true)
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700160ifeq ($(ONE_SHOT_MAKEFILE),)
161VIXL_TEST_DEPENDENCY := run-vixl-tests
Andreas Gampe3c033572014-05-13 08:41:48 -0700162endif
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700163endif
164
Ian Rogersafd9acc2014-06-17 08:21:54 -0700165.PHONY: test-art-host-vixl
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700166test-art-host-vixl: $(VIXL_TEST_DEPENDENCY)
Andreas Gampe3c033572014-05-13 08:41:48 -0700167
Ian Rogersafd9acc2014-06-17 08:21:54 -0700168# "mm test-art-host" to build and run all host tests.
Brian Carlstrom934486c2011-07-12 23:42:50 -0700169.PHONY: test-art-host
Aart Bika59032f2015-07-06 17:45:30 -0700170test-art-host: test-art-host-gtest test-art-host-run-test \
171 test-art-host-vixl test-art-host-dexdump
Ian Rogersafd9acc2014-06-17 08:21:54 -0700172 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom59848da2011-07-23 20:35:19 -0700173
Ian Rogersafd9acc2014-06-17 08:21:54 -0700174# All host tests that run solely with the default compiler.
175.PHONY: test-art-host-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700176test-art-host-default: test-art-host-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700177 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
178
179# All host tests that run solely with the optimizing compiler.
180.PHONY: test-art-host-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700181test-art-host-optimizing: test-art-host-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700182 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
183
184# All host tests that run solely on the interpreter.
Ian Rogers85d9ba62013-01-16 22:32:12 -0800185.PHONY: test-art-host-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700186test-art-host-interpreter: test-art-host-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700187 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogers85d9ba62013-01-16 22:32:12 -0800188
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800189# All host tests that run solely on the jit.
190.PHONY: test-art-host-jit
191test-art-host-jit: test-art-host-run-test-jit
192 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
193
Ian Rogersafd9acc2014-06-17 08:21:54 -0700194# Primary host architecture variants:
195.PHONY: test-art-host$(ART_PHONY_TEST_HOST_SUFFIX)
196test-art-host$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(ART_PHONY_TEST_HOST_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700197 test-art-host-run-test$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700198 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb0aa9d32012-04-07 23:12:22 -0700199
Ian Rogersafd9acc2014-06-17 08:21:54 -0700200.PHONY: test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700201test-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 -0700202 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700203
Ian Rogersafd9acc2014-06-17 08:21:54 -0700204.PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700205test-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 -0700206 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb2793372012-03-17 18:27:16 -0700207
Ian Rogersafd9acc2014-06-17 08:21:54 -0700208.PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700209test-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 -0700210 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700211
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800212.PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX)
213test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUFFIX)
214 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
215
Ian Rogersafd9acc2014-06-17 08:21:54 -0700216# Secondary host architecture variants:
217ifneq ($(HOST_PREFER_32_BIT),true)
218.PHONY: test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
219test-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 -0700220 test-art-host-run-test$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700221 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700222
Ian Rogersafd9acc2014-06-17 08:21:54 -0700223.PHONY: test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700224test-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 -0700225 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes5511f212011-08-12 18:07:45 -0700226
Ian Rogersafd9acc2014-06-17 08:21:54 -0700227.PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700228test-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 -0700229 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Nicolas Geoffray3a505222014-05-26 16:40:55 +0100230
Ian Rogersafd9acc2014-06-17 08:21:54 -0700231.PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700232test-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 -0700233 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800234
235.PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
236test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
237 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Andreas Gampe2fe07922014-04-21 07:50:39 -0700238endif
Brian Carlstrome24fa612011-09-29 00:53:55 -0700239
Aart Bik3e40f4a2015-07-07 17:09:41 -0700240# Dexdump/list regression test.
Aart Bika59032f2015-07-06 17:45:30 -0700241.PHONY: test-art-host-dexdump
David Sehr4f215d12019-04-03 09:28:21 -0700242test-art-host-dexdump: $(addprefix $(HOST_OUT_EXECUTABLES)/, dexdump dexlist)
Ying Wang882a4f32015-07-08 14:09:10 -0700243 ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests
Aart Bika59032f2015-07-06 17:45:30 -0700244
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700245########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700246# target test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700247
Ian Rogersafd9acc2014-06-17 08:21:54 -0700248# "mm test-art-target" to build and run all target tests.
249.PHONY: test-art-target
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700250test-art-target: test-art-target-gtest test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700251 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
252
253# All target tests that run solely with the default compiler.
254.PHONY: test-art-target-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700255test-art-target-default: test-art-target-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700256 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
257
258# All target tests that run solely with the optimizing compiler.
259.PHONY: test-art-target-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700260test-art-target-optimizing: test-art-target-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700261 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
262
263# All target tests that run solely on the interpreter.
264.PHONY: test-art-target-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700265test-art-target-interpreter: test-art-target-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700266 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
267
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800268# All target tests that run solely on the jit.
269.PHONY: test-art-target-jit
270test-art-target-jit: test-art-target-run-test-jit
271 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
272
Ian Rogersafd9acc2014-06-17 08:21:54 -0700273# Primary target architecture variants:
274.PHONY: test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX)
275test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(ART_PHONY_TEST_TARGET_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700276 test-art-target-run-test$(ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700277 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
278
279.PHONY: test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700280test-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 -0700281 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
282
283.PHONY: test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700284test-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 -0700285 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
286
287.PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700288test-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 -0700289 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
290
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800291.PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
292test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
293 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
294
Ian Rogersafd9acc2014-06-17 08:21:54 -0700295# Secondary target architecture variants:
Dan Willemsen5d2dbf82018-04-11 12:31:11 -0700296ifdef 2ND_ART_PHONY_TEST_TARGET_SUFFIX
Ian Rogersafd9acc2014-06-17 08:21:54 -0700297.PHONY: test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
298test-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 -0700299 test-art-target-run-test$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700300 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
301
302.PHONY: test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700303test-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 -0700304 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
305
306.PHONY: test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700307test-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 -0700308 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
309
310.PHONY: test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700311test-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 -0700312 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800313
314.PHONY: test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
315test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
316 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700317endif
318
Dan Willemsencd8a0572016-09-16 17:11:36 -0700319
Andreas Gampe760a58f2017-06-22 15:21:09 -0700320#######################
Roland Levillain53058802018-11-14 17:32:18 +0000321# Android Runtime APEX.
322
323include $(CLEAR_VARS)
Roland Levillaine56607a2018-11-16 19:40:25 +0000324
325# The Android Runtime APEX comes in two flavors:
326# - the release module (`com.android.runtime.release`), containing
327# only "release" artifacts;
328# - the debug module (`com.android.runtime.debug`), containing both
329# "release" and "debug" artifacts, as well as additional tools.
330#
331# The Android Runtime APEX module (`com.android.runtime`) is an
332# "alias" for one of the previous modules. By default, "user" build
333# variants contain the release module, while "userdebug" and "eng"
334# build variant contain the debug module. However, if
335# `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is defined, it overrides
336# the previous logic:
337# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `false`, the
338# build will include the release module (whatever the build
339# variant);
340# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `true`, the
341# build will include the debug module (whatever the build variant).
342
343art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
344ifneq (false,$(art_target_include_debug_build))
345 ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
346 art_target_include_debug_build := true
347 endif
348endif
349ifeq (true,$(art_target_include_debug_build))
350 # Module with both release and debug variants, as well as
351 # additional tools.
352 TARGET_RUNTIME_APEX := com.android.runtime.debug
Jiyong Park1410e9f2019-02-02 04:18:23 +0000353 APEX_TEST_MODULE := art-check-debug-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000354else
355 # Release module (without debug variants nor tools).
356 TARGET_RUNTIME_APEX := com.android.runtime.release
Jiyong Park1410e9f2019-02-02 04:18:23 +0000357 APEX_TEST_MODULE := art-check-release-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000358endif
359
Roland Levillain53058802018-11-14 17:32:18 +0000360LOCAL_MODULE := com.android.runtime
Andreas Gampef36079a2019-01-29 21:36:22 +0000361LOCAL_REQUIRED_MODULES := $(TARGET_RUNTIME_APEX)
Andreas Gampe57975682019-03-04 09:27:11 -0800362LOCAL_REQUIRED_MODULES += art_apex_boot_integrity
Roland Levillaine56607a2018-11-16 19:40:25 +0000363
364# Clear locally used variable.
365art_target_include_debug_build :=
366
Roland Levillain53058802018-11-14 17:32:18 +0000367include $(BUILD_PHONY_PACKAGE)
368
Dan Willemsenb9a05b02019-04-02 16:13:14 -0700369include $(CLEAR_VARS)
370LOCAL_MODULE := com.android.runtime
371LOCAL_IS_HOST_MODULE := true
372ifneq ($(HOST_OS),darwin)
373 LOCAL_REQUIRED_MODULES += $(APEX_TEST_MODULE)
374endif
375include $(BUILD_PHONY_PACKAGE)
376
Jiyong Park72da9852019-03-21 15:01:11 +0900377# Create canonical name -> file name symlink in the symbol directory
378# The symbol files for the debug or release variant are installed to
379# $(TARGET_OUT_UNSTRIPPED)/$(TARGET_RUNTIME_APEX) directory. However,
380# since they are available via /apex/com.android.runtime at runtime
381# regardless of which variant is installed, create a symlink so that
382# $(TARGET_OUT_UNSTRIPPED)/apex/com.android.runtime is linked to
383# $(TARGET_OUT_UNSTRIPPED)/apex/$(TARGET_RUNTIME_APEX).
384# Note that installation of the symlink is triggered by the apex_manifest.json
385# file which is the file that is guaranteed to be created regardless of the
386# value of TARGET_FLATTEN_APEX.
Jiyong Park27085042019-05-10 21:11:07 +0900387#
388# b/132413565: Also, when TARGET_FLATTEN_APEX, an empty directory
389# /system/apex/com.android.runtime is created. After the entire
390# /system/apex is mounted on /apex, the flattened runtime APEX
391# (either com.android.runtime.debug or *.release) is mounted on the empty
392# directory so that the APEX is accessible via the canonical path
393# /apex/com.android.runtime
Jiyong Park72da9852019-03-21 15:01:11 +0900394ifeq ($(TARGET_FLATTEN_APEX),true)
395runtime_apex_manifest_file := $(PRODUCT_OUT)/system/apex/$(TARGET_RUNTIME_APEX)/apex_manifest.json
396else
397runtime_apex_manifest_file := $(PRODUCT_OUT)/apex/$(TARGET_RUNTIME_APEX)/apex_manifest.json
398endif
399
Jiyong Park055cf9a2019-04-30 13:11:11 +0900400runtime_apex_symlink_timestamp := $(call intermediates-dir-for,FAKE,com.android.runtime)/symlink.timestamp
401$(runtime_apex_manifest_file): $(runtime_apex_symlink_timestamp)
402$(runtime_apex_manifest_file): PRIVATE_LINK_NAME := $(TARGET_OUT_UNSTRIPPED)/apex/com.android.runtime
403$(runtime_apex_symlink_timestamp):
404 $(hide) mkdir -p $(dir $(PRIVATE_LINK_NAME))
405 $(hide) ln -sf $(TARGET_RUNTIME_APEX) $(PRIVATE_LINK_NAME)
Jiyong Park27085042019-05-10 21:11:07 +0900406ifeq ($(TARGET_FLATTEN_APEX),true)
407 $(hide) mkdir -p $(TARGET_OUT)/apex/com.android.runtime
408endif
Jiyong Park055cf9a2019-04-30 13:11:11 +0900409 $(hide) touch $@
Jiyong Park72da9852019-03-21 15:01:11 +0900410
411runtime_apex_manifest_file :=
Roland Levillain53058802018-11-14 17:32:18 +0000412
413#######################
Andreas Gampe760a58f2017-06-22 15:21:09 -0700414# Fake packages for ART
415
416# The art-runtime package depends on the core ART libraries and binaries. It exists so we can
417# manipulate the set of things shipped, e.g., add debug versions and so on.
418
419include $(CLEAR_VARS)
420LOCAL_MODULE := art-runtime
421
422# Base requirements.
423LOCAL_REQUIRED_MODULES := \
424 dalvikvm \
425 dex2oat \
426 dexoptanalyzer \
427 libart \
428 libart-compiler \
429 libopenjdkjvm \
430 libopenjdkjvmti \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700431 profman \
Alex Lightfbf96702017-12-14 13:27:13 -0800432 libadbconnection \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700433
Andreas Gampeb4949032017-06-22 15:24:41 -0700434# Potentially add in debug variants:
435#
436# * We will never add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = false.
437# * We will always add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = true.
438# * Otherwise, we will add them by default to userdebug and eng builds.
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700439art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
440ifneq (false,$(art_target_include_debug_build))
441ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
442 art_target_include_debug_build := true
Andreas Gampeb4949032017-06-22 15:24:41 -0700443endif
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700444ifeq (true,$(art_target_include_debug_build))
Andreas Gampeb4949032017-06-22 15:24:41 -0700445LOCAL_REQUIRED_MODULES += \
Andreas Gampe3d14d2b2017-07-18 08:36:16 -0700446 dex2oatd \
447 dexoptanalyzerd \
Andreas Gampeb4949032017-06-22 15:24:41 -0700448 libartd \
449 libartd-compiler \
Andreas Gampeb8c7f1a2017-07-12 12:59:50 -0700450 libopenjdkd \
Andreas Gampeb4949032017-06-22 15:24:41 -0700451 libopenjdkjvmd \
452 libopenjdkjvmtid \
Andreas Gampe3d14d2b2017-07-18 08:36:16 -0700453 profmand \
Alex Lightfbf96702017-12-14 13:27:13 -0800454 libadbconnectiond \
Andreas Gampeb4949032017-06-22 15:24:41 -0700455
456endif
457endif
458
Andreas Gampe760a58f2017-06-22 15:21:09 -0700459include $(BUILD_PHONY_PACKAGE)
460
Orion Hodson5cb98a92019-03-25 15:07:16 +0000461# The art-tools package depends on helpers and tools that are useful for developers. Similar
462# dependencies exist for the APEX builds for these tools (see build/apex/Android.bp).
Andreas Gampe760a58f2017-06-22 15:21:09 -0700463
464include $(CLEAR_VARS)
465LOCAL_MODULE := art-tools
Orion Hodson362e9f22019-03-28 09:30:20 +0000466LOCAL_IS_HOST_MODULE := true
467LOCAL_REQUIRED_MODULES := \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700468 ahat \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700469 dexdump \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700470 hprof-conv \
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000471
472# A subset of the tools are disabled when HOST_PREFER_32_BIT is defined as make reports that
473# they are not supported on host (b/129323791). This is likely due to art_apex disabling host
474# APEX builds when HOST_PREFER_32_BIT is set (b/120617876).
475ifneq ($(HOST_PREFER_32_BIT),true)
Orion Hodson362e9f22019-03-28 09:30:20 +0000476LOCAL_REQUIRED_MODULES += \
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000477 dexdiag \
478 dexlist \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700479 oatdump \
480
Orion Hodsondfad9fc2019-03-26 11:34:21 +0000481endif
482
Andreas Gampe760a58f2017-06-22 15:21:09 -0700483include $(BUILD_PHONY_PACKAGE)
484
Andreas Gampe10edbb12016-01-06 17:59:49 -0800485####################################################################################################
486# Fake packages to ensure generation of libopenjdkd when one builds with mm/mmm/mmma.
487#
488# The library is required for starting a runtime in debug mode, but libartd does not depend on it
489# (dependency cycle otherwise).
490#
491# Note: * As the package is phony to create a dependency the package name is irrelevant.
492# * We make MULTILIB explicit to "both," just to state here that we want both libraries on
493# 64-bit systems, even if it is the default.
494
495# ART on the host.
496ifeq ($(ART_BUILD_HOST_DEBUG),true)
497include $(CLEAR_VARS)
498LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency
499LOCAL_MULTILIB := both
500LOCAL_REQUIRED_MODULES := libopenjdkd
501LOCAL_IS_HOST_MODULE := true
502include $(BUILD_PHONY_PACKAGE)
503endif
504
505# ART on the target.
506ifeq ($(ART_BUILD_TARGET_DEBUG),true)
507include $(CLEAR_VARS)
508LOCAL_MODULE := art-libartd-libopenjdkd-target-dependency
509LOCAL_MULTILIB := both
510LOCAL_REQUIRED_MODULES := libopenjdkd
511include $(BUILD_PHONY_PACKAGE)
512endif
513
Brian Carlstrom76aa0c02011-10-11 15:29:43 -0700514########################################################################
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700515# "m build-art" for quick minimal build
516.PHONY: build-art
517build-art: build-art-host build-art-target
518
519.PHONY: build-art-host
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700520build-art-host: $(HOST_OUT_EXECUTABLES)/art $(ART_HOST_DEPENDENCIES) $(HOST_CORE_IMG_OUTS)
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700521
522.PHONY: build-art-target
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700523build-art-target: $(TARGET_OUT_EXECUTABLES)/art $(ART_TARGET_DEPENDENCIES) $(TARGET_CORE_IMG_OUTS)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000524
525########################################################################
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000526# Workaround for not using symbolic links for linker and bionic libraries
527# in a minimal setup (eg buildbot or golem).
528########################################################################
529
530PRIVATE_BIONIC_FILES := \
531 bin/bootstrap/linker \
532 bin/bootstrap/linker64 \
533 lib/bootstrap/libc.so \
534 lib/bootstrap/libm.so \
535 lib/bootstrap/libdl.so \
536 lib64/bootstrap/libc.so \
537 lib64/bootstrap/libm.so \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000538 lib64/bootstrap/libdl.so \
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000539
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000540PRIVATE_RUNTIME_DEPENDENCY_LIBS := \
541 lib/libnativebridge.so \
542 lib64/libnativebridge.so \
543 lib/libnativehelper.so \
544 lib64/libnativehelper.so \
545 lib/libdexfile_external.so \
546 lib64/libdexfile_external.so \
Nicolas Geoffray9dc44d92019-05-02 09:56:46 +0100547 lib/libdexfiled_external.so \
548 lib64/libdexfiled_external.so \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000549 lib/libnativeloader.so \
550 lib64/libnativeloader.so \
Roland Levillain95e03032019-03-26 17:00:28 +0000551 lib/libandroidio.so \
552 lib64/libandroidio.so \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000553
Roland Levillainc088b2e2019-04-02 18:18:16 +0100554# Copy some libraries into `$(TARGET_OUT)/lib(64)` (the
555# `/system/lib(64)` directory to be sync'd to the target) for ART testing
556# purposes:
557# - Bionic bootstrap libraries, copied from
558# `$(TARGET_OUT)/lib(64)/bootstrap` (the `/system/lib(64)/bootstrap`
559# directory to be sync'd to the target);
560# - Some libraries which are part of the Runtime APEX; if the product
561# to build uses flattened APEXes, these libraries are copied from
562# `$(TARGET_OUT)/apex/com.android.runtime.debug` (the flattened
563# (Debug) Runtime APEX directory to be sync'd to the target);
564# otherwise, they are copied from
565# `$(TARGET_OUT)/../apex/com.android.runtime.debug` (the local
566# directory under the build tree containing the (Debug) Runtime APEX
567# artifacts, which is not sync'd to the target).
568#
Roland Levillaind801a7b2019-05-01 14:59:00 +0100569# TODO(b/121117762, b/129332183): Remove this when the ART Buildbot
570# and Golem have full support for the Runtime APEX.
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000571.PHONY: standalone-apex-files
572standalone-apex-files: libc.bootstrap libdl.bootstrap libm.bootstrap linker com.android.runtime.debug
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000573 for f in $(PRIVATE_BIONIC_FILES); do \
574 tf=$(TARGET_OUT)/$$f; \
575 if [ -f $$tf ]; then cp -f $$tf $$(echo $$tf | sed 's,bootstrap/,,'); fi; \
576 done
Roland Levillainc088b2e2019-04-02 18:18:16 +0100577 if [ "x$(TARGET_FLATTEN_APEX)" = xtrue ]; then \
578 runtime_apex_orig_dir=$(TARGET_OUT)/apex/com.android.runtime.debug; \
579 else \
580 runtime_apex_orig_dir=$(TARGET_OUT)/../apex/com.android.runtime.debug; \
581 fi; \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000582 for f in $(PRIVATE_RUNTIME_DEPENDENCY_LIBS); do \
Roland Levillainc088b2e2019-04-02 18:18:16 +0100583 tf="$$runtime_apex_orig_dir/$$f"; \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000584 if [ -f $$tf ]; then cp -f $$tf $(TARGET_OUT)/$$f; fi; \
585 done
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000586
587########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100588# Phony target for only building what go/lem requires for pushing ART on /data.
Nicolas Geoffrayab4825d2018-02-05 16:12:52 +0000589
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100590.PHONY: build-art-target-golem
Igor Murashkin017efa82016-09-22 15:46:29 -0700591# Also include libartbenchmark, we always include it when running golem.
Nicolas Geoffraye137a212016-12-08 13:49:54 +0000592# libstdc++ is needed when building for ART_TARGET_LINUX.
Roland Levillaind801a7b2019-05-01 14:59:00 +0100593
Roland Levillain40890c12019-01-13 22:48:38 +0000594# Also include the bootstrap Bionic libraries (libc, libdl, libm).
595# These are required as the "main" libc, libdl, and libm have moved to
596# the Runtime APEX. This is a temporary change needed until Golem
597# fully supports the Runtime APEX.
Roland Levillain40890c12019-01-13 22:48:38 +0000598#
Roland Levillaind801a7b2019-05-01 14:59:00 +0100599# TODO(b/121117762, b/129332183): Remove this when the ART Buildbot
600# and Golem have full support for the Runtime APEX.
601
602# Also include:
603# - a copy of the ICU .dat prebuilt files in /system/etc/icu on target
604# (see module `icu-data-art-test`); and
605# - a copy of the timezones prebuilt files in /system/etc/tz on
606# target, (see modules `tzdata-art-test`, `tzlookup.xml-art-test`,
607# and `tz_version-art-test`)
608# so that they can be found even if the Runtime APEX is not available,
609# by setting the environment variable `ART_TEST_ANDROID_RUNTIME_ROOT`
610# to "/system" on device. This is a temporary change needed until
611# Golem fully supports the Runtime APEX.
612#
613# TODO(b/121117762, b/129332183): Remove this when the ART Buildbot
614# and Golem have full support for the Runtime APEX.
Igor Murashkin017efa82016-09-22 15:46:29 -0700615ART_TARGET_SHARED_LIBRARY_BENCHMARK := $(TARGET_OUT_SHARED_LIBRARIES)/libartbenchmark.so
Vladimir Markoa497a392018-09-26 10:52:50 +0100616build-art-target-golem: dex2oat dalvikvm linker libstdc++ \
Nicolas Geoffray51216912017-03-16 12:39:50 +0000617 $(TARGET_OUT_EXECUTABLES)/art \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100618 $(TARGET_OUT)/etc/public.libraries.txt \
619 $(ART_TARGET_DEX_DEPENDENCIES) \
620 $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES) \
Igor Murashkin017efa82016-09-22 15:46:29 -0700621 $(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100622 $(TARGET_CORE_IMG_OUT_BASE).art \
Roland Levillainc3512812019-01-11 17:07:49 +0000623 $(TARGET_CORE_IMG_OUT_BASE)-interpreter.art \
Roland Levillain40890c12019-01-13 22:48:38 +0000624 libc.bootstrap libdl.bootstrap libm.bootstrap \
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000625 icu-data-art-test \
Roland Levillaind801a7b2019-05-01 14:59:00 +0100626 tzdata-art-test tzlookup.xml-art-test tz_version-art-test \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000627 standalone-apex-files
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100628 # remove debug libraries from public.libraries.txt because golem builds
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000629 # won't have it.
Nicolas Geoffray3bf94292018-02-04 14:48:34 +0000630 sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000631 sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100632 sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray763a14a2018-05-21 13:16:51 +0100633 sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100634
635########################################################################
Igor Murashkin017efa82016-09-22 15:46:29 -0700636# Phony target for building what go/lem requires on host.
637.PHONY: build-art-host-golem
638# Also include libartbenchmark, we always include it when running golem.
639ART_HOST_SHARED_LIBRARY_BENCHMARK := $(ART_HOST_OUT_SHARED_LIBRARIES)/libartbenchmark.so
640build-art-host-golem: build-art-host \
641 $(ART_HOST_SHARED_LIBRARY_BENCHMARK)
642
643########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100644# Phony target for building what go/lem requires for syncing /system to target.
645.PHONY: build-art-unbundled-golem
Nicolas Geoffraycf053a52017-11-15 15:10:09 +0000646build-art-unbundled-golem: art-runtime linker oatdump $(TARGET_CORE_JARS) crash_dump
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100647
648########################################################################
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100649# Rules for building all dependencies for tests.
650
651.PHONY: build-art-host-tests
Yohann Roussel05b91252015-12-09 12:02:46 +0100652build-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 +0100653
654.PHONY: build-art-target-tests
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +0100655build-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 +0100656
657########################################################################
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700658# targets to switch back and forth from libdvm to libart
659
660.PHONY: use-art
661use-art:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100662 $(ADB) root
663 $(ADB) wait-for-device shell stop
664 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
665 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700666
667.PHONY: use-artd
668use-artd:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100669 $(ADB) root
670 $(ADB) wait-for-device shell stop
671 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
672 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700673
674.PHONY: use-dalvik
675use-dalvik:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100676 $(ADB) root
677 $(ADB) wait-for-device shell stop
678 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so
679 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800680
681.PHONY: use-art-full
682use-art-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100683 $(ADB) root
684 $(ADB) wait-for-device shell stop
685 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
686 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
687 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
688 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
689 $(ADB) shell setprop dalvik.vm.usejit false
690 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800691
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700692.PHONY: use-artd-full
693use-artd-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100694 $(ADB) root
695 $(ADB) wait-for-device shell stop
696 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
697 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
698 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
699 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
700 $(ADB) shell setprop dalvik.vm.usejit false
701 $(ADB) shell start
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700702
Mathieu Chartierd71795b2015-07-14 16:59:23 -0700703.PHONY: use-art-jit
704use-art-jit:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100705 $(ADB) root
706 $(ADB) wait-for-device shell stop
707 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
708 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-at-runtime"
709 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime"
710 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
711 $(ADB) shell setprop dalvik.vm.usejit true
712 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800713
714.PHONY: use-art-interpret-only
715use-art-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100716 $(ADB) root
717 $(ADB) wait-for-device shell stop
718 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
719 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
720 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
721 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
722 $(ADB) shell setprop dalvik.vm.usejit false
723 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700724
Sebastien Hertz15582b92014-07-04 10:53:22 +0200725.PHONY: use-artd-interpret-only
726use-artd-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100727 $(ADB) root
728 $(ADB) wait-for-device shell stop
729 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
730 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
731 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
732 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
733 $(ADB) shell setprop dalvik.vm.usejit false
734 $(ADB) shell start
Sebastien Hertz15582b92014-07-04 10:53:22 +0200735
Jeff Hao4a200f52014-04-01 14:58:49 -0700736.PHONY: use-art-verify-none
737use-art-verify-none:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100738 $(ADB) root
739 $(ADB) wait-for-device shell stop
740 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
741 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-none"
742 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-none"
743 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
744 $(ADB) shell setprop dalvik.vm.usejit false
745 $(ADB) shell start
Jeff Hao4a200f52014-04-01 14:58:49 -0700746
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700747########################################################################
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700748
Ian Rogers8f0bbd22014-09-26 15:31:20 -0700749# Clear locally used variables.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100750TEST_ART_TARGET_SYNC_DEPS :=
Narayan Kamath0095d882016-02-12 16:09:58 +0000751
Andreas Gampefad48e72016-04-11 11:57:18 -0700752# Helper target that depends on boot image creation.
753#
754# Can be used, for example, to dump initialization failures:
755# m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt
756.PHONY: art-boot-image
Nicolas Geoffraya5880862019-03-21 09:33:37 +0000757art-boot-image: $(DEXPREOPT_IMAGE_boot_$(TARGET_ARCH))
Calin Juravlef01de112016-10-24 12:40:19 +0100758
759.PHONY: art-job-images
760art-job-images: \
Nicolas Geoffraya5880862019-03-21 09:33:37 +0000761 art-boot-image \
Calin Juravlef01de112016-10-24 12:40:19 +0100762 $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \
763 $(HOST_OUT_EXECUTABLES)/dex2oats \
764 $(HOST_OUT_EXECUTABLES)/dex2oatds \
765 $(HOST_OUT_EXECUTABLES)/profman