blob: ba131c64e7f61244413bfaa264cc4e958c127cce [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
Andreas Gampe5a79fde2014-08-06 13:12:26 -070034ifneq ($(TMPDIR),)
35 rm -rf $(TMPDIR)/$(USER)/test-*/dalvik-cache/*
36 rm -rf $(TMPDIR)/android-data/dalvik-cache/*
37else
Dmitry Petrochenko81c56e72014-03-05 15:05:46 +070038 rm -rf /tmp/$(USER)/test-*/dalvik-cache/*
Brian Carlstromae089612014-05-01 13:52:23 -070039 rm -rf /tmp/android-data/dalvik-cache/*
Andreas Gampe5a79fde2014-08-06 13:12:26 -070040endif
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070041
42.PHONY: clean-oat-target
43clean-oat-target:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010044 $(ADB) root
45 $(ADB) wait-for-device remount
46 $(ADB) shell rm -rf $(ART_TARGET_NATIVETEST_DIR)
47 $(ADB) shell rm -rf $(ART_TARGET_TEST_DIR)
48 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*/*
49 $(ADB) shell rm -rf $(DEXPREOPT_BOOT_JAR_DIR)/$(DEX2OAT_TARGET_ARCH)
50 $(ADB) shell rm -rf system/app/$(DEX2OAT_TARGET_ARCH)
Brian Carlstromf662e062014-05-19 16:09:42 -070051ifdef TARGET_2ND_ARCH
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010052 $(ADB) shell rm -rf $(DEXPREOPT_BOOT_JAR_DIR)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)
53 $(ADB) shell rm -rf system/app/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)
Brian Carlstromf662e062014-05-19 16:09:42 -070054endif
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010055 $(ADB) shell rm -rf data/run-test/test-*/dalvik-cache/*
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070056
Brian Carlstrom62e3ee32012-06-18 14:58:55 -070057########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070058# cpplint rules to style check art source files
59
60include $(art_path)/build/Android.cpplint.mk
61
62########################################################################
63# product rules
64
Colin Cross35235cb2016-09-09 11:19:32 -070065include $(art_path)/oatdump/Android.mk
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +000066include $(art_path)/tools/Android.mk
Richard Uhlerb730b782015-07-15 16:01:58 -070067include $(art_path)/tools/ahat/Android.mk
Richard Uhlerd9caa9b2018-02-14 11:08:13 +000068include $(art_path)/tools/amm/Android.mk
Stephen Kyle959ffdf2014-11-28 14:27:44 +000069include $(art_path)/tools/dexfuzz/Android.mk
Nicolas Geoffrayd1ef7172018-03-28 09:16:31 +010070include $(art_path)/tools/veridex/Android.mk
Alex Lightee174262016-04-15 12:41:09 -070071include $(art_path)/libart_fake/Android.mk
Dave Allisonf4b80bc2014-05-14 15:41:25 -070072
Brian Carlstrom532714a2014-06-25 02:15:31 -070073ART_HOST_DEPENDENCIES := \
Richard Uhlerc5a00042016-07-01 13:10:56 -070074 $(ART_HOST_EXECUTABLES) \
75 $(ART_HOST_DEX_DEPENDENCIES) \
76 $(ART_HOST_SHARED_LIBRARY_DEPENDENCIES)
Alex Light7b497ee2017-05-25 09:54:15 -070077
78ifeq ($(ART_BUILD_HOST_DEBUG),true)
79ART_HOST_DEPENDENCIES += $(ART_HOST_SHARED_LIBRARY_DEBUG_DEPENDENCIES)
80endif
81
Brian Carlstrom532714a2014-06-25 02:15:31 -070082ART_TARGET_DEPENDENCIES := \
Richard Uhlerc5a00042016-07-01 13:10:56 -070083 $(ART_TARGET_EXECUTABLES) \
84 $(ART_TARGET_DEX_DEPENDENCIES) \
85 $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES)
Brian Carlstrom15803792012-03-13 00:53:08 -070086
Alex Light7b497ee2017-05-25 09:54:15 -070087ifeq ($(ART_BUILD_TARGET_DEBUG),true)
88ART_TARGET_DEPENDENCIES += $(ART_TARGET_SHARED_LIBRARY_DEBUG_DEPENDENCIES)
89endif
90
Brian Carlstromb2793372012-03-17 18:27:16 -070091########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070092# test rules
Brian Carlstrom15803792012-03-13 00:53:08 -070093
Ian Rogersafd9acc2014-06-17 08:21:54 -070094# All the dependencies that must be built ahead of sync-ing them onto the target device.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010095TEST_ART_TARGET_SYNC_DEPS := $(ADB_EXECUTABLE)
Brian Carlstromb2793372012-03-17 18:27:16 -070096
Ian Rogersafd9acc2014-06-17 08:21:54 -070097include $(art_path)/build/Android.common_test.mk
98include $(art_path)/build/Android.gtest.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070099include $(art_path)/test/Android.run-test.mk
Andreas Gampe2fe07922014-04-21 07:50:39 -0700100
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +0100101TEST_ART_TARGET_SYNC_DEPS += $(ART_TEST_TARGET_GTEST_DEPENDENCIES) $(ART_TEST_TARGET_RUN_TEST_DEPENDENCIES)
Nicolas Geoffray17b1dcb2018-10-12 15:09:42 +0100102
Roland Levillain57981952018-08-03 14:06:21 +0100103# Make sure /system is writable on the device.
Alex Light53fc75a2015-11-20 15:35:48 -0800104TEST_ART_ADB_ROOT_AND_REMOUNT := \
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100105 ($(ADB) root && \
106 $(ADB) wait-for-device remount && \
107 (($(ADB) shell touch /system/testfile && \
108 ($(ADB) shell rm /system/testfile || true)) || \
109 ($(ADB) disable-verity && \
110 $(ADB) reboot && \
111 $(ADB) wait-for-device root && \
112 $(ADB) wait-for-device remount)))
Alex Light53fc75a2015-11-20 15:35:48 -0800113
Ian Rogersafd9acc2014-06-17 08:21:54 -0700114# Sync test files to the target, depends upon all things that must be pushed to the target.
115.PHONY: test-art-target-sync
Roland Levillain76cfe612017-10-30 13:14:28 +0000116# Check if we need to sync. In case ART_TEST_CHROOT or ART_TEST_ANDROID_ROOT
117# is not empty, the code below uses 'adb push' instead of 'adb sync',
118# which does not check if the files on the device have changed.
119# TODO: Remove support for ART_TEST_ANDROID_ROOT when it is no longer needed.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100120ifneq ($(ART_TEST_NO_SYNC),true)
Roland Levillain76cfe612017-10-30 13:14:28 +0000121# Sync system and data partitions.
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000122ifeq ($(ART_TEST_ANDROID_ROOT),)
Roland Levillain76cfe612017-10-30 13:14:28 +0000123ifeq ($(ART_TEST_CHROOT),)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700124test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
Alex Light53fc75a2015-11-20 15:35:48 -0800125 $(TEST_ART_ADB_ROOT_AND_REMOUNT)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100126 $(ADB) sync system && $(ADB) sync data
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000127else
Roland Levillain57981952018-08-03 14:06:21 +0100128# TEST_ART_ADB_ROOT_AND_REMOUNT is not needed here, as we are only
129# pushing things to the chroot dir, which is expected to be under
130# /data on the device.
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000131test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100132 $(ADB) wait-for-device
133 $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)/
134 $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/
Roland Levillain76cfe612017-10-30 13:14:28 +0000135endif
136else
137test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
138 $(TEST_ART_ADB_ROOT_AND_REMOUNT)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100139 $(ADB) wait-for-device
140 $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)$(ART_TEST_ANDROID_ROOT)
Roland Levillain76cfe612017-10-30 13:14:28 +0000141# Push the contents of the `data` dir into `$(ART_TEST_CHROOT)/data` on the device (note
142# that $(ART_TEST_CHROOT) can be empty). If `$(ART_TEST_CHROOT)/data` already exists on
143# the device, it is not overwritten, but its content is updated.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100144 $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000145endif
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100146endif
Brian Carlstrom934486c2011-07-12 23:42:50 -0700147
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700148# "mm test-art" to build and run all tests on host and device
149.PHONY: test-art
150test-art: test-art-host test-art-target
Ian Rogersafd9acc2014-06-17 08:21:54 -0700151 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700152
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700153.PHONY: test-art-gtest
Brian Carlstromb2793372012-03-17 18:27:16 -0700154test-art-gtest: test-art-host-gtest test-art-target-gtest
Ian Rogersafd9acc2014-06-17 08:21:54 -0700155 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700156
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700157.PHONY: test-art-run-test
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700158test-art-run-test: test-art-host-run-test test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700159 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700160
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700161########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700162# host test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700163
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700164VIXL_TEST_DEPENDENCY :=
165# We can only run the vixl tests on 64-bit hosts (vixl testing issue) when its a
166# top-level build (to declare the vixl test rule).
Ian Rogersafd9acc2014-06-17 08:21:54 -0700167ifneq ($(HOST_PREFER_32_BIT),true)
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700168ifeq ($(ONE_SHOT_MAKEFILE),)
169VIXL_TEST_DEPENDENCY := run-vixl-tests
Andreas Gampe3c033572014-05-13 08:41:48 -0700170endif
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700171endif
172
Ian Rogersafd9acc2014-06-17 08:21:54 -0700173.PHONY: test-art-host-vixl
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700174test-art-host-vixl: $(VIXL_TEST_DEPENDENCY)
Andreas Gampe3c033572014-05-13 08:41:48 -0700175
Ian Rogersafd9acc2014-06-17 08:21:54 -0700176# "mm test-art-host" to build and run all host tests.
Brian Carlstrom934486c2011-07-12 23:42:50 -0700177.PHONY: test-art-host
Aart Bika59032f2015-07-06 17:45:30 -0700178test-art-host: test-art-host-gtest test-art-host-run-test \
179 test-art-host-vixl test-art-host-dexdump
Ian Rogersafd9acc2014-06-17 08:21:54 -0700180 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom59848da2011-07-23 20:35:19 -0700181
Ian Rogersafd9acc2014-06-17 08:21:54 -0700182# All host tests that run solely with the default compiler.
183.PHONY: test-art-host-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700184test-art-host-default: test-art-host-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700185 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
186
187# All host tests that run solely with the optimizing compiler.
188.PHONY: test-art-host-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700189test-art-host-optimizing: test-art-host-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700190 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
191
192# All host tests that run solely on the interpreter.
Ian Rogers85d9ba62013-01-16 22:32:12 -0800193.PHONY: test-art-host-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700194test-art-host-interpreter: test-art-host-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700195 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogers85d9ba62013-01-16 22:32:12 -0800196
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800197# All host tests that run solely on the jit.
198.PHONY: test-art-host-jit
199test-art-host-jit: test-art-host-run-test-jit
200 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
201
Ian Rogersafd9acc2014-06-17 08:21:54 -0700202# Primary host architecture variants:
203.PHONY: test-art-host$(ART_PHONY_TEST_HOST_SUFFIX)
204test-art-host$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(ART_PHONY_TEST_HOST_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700205 test-art-host-run-test$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700206 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb0aa9d32012-04-07 23:12:22 -0700207
Ian Rogersafd9acc2014-06-17 08:21:54 -0700208.PHONY: test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700209test-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 -0700210 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700211
Ian Rogersafd9acc2014-06-17 08:21:54 -0700212.PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700213test-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 -0700214 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb2793372012-03-17 18:27:16 -0700215
Ian Rogersafd9acc2014-06-17 08:21:54 -0700216.PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700217test-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 -0700218 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700219
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800220.PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX)
221test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUFFIX)
222 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
223
Ian Rogersafd9acc2014-06-17 08:21:54 -0700224# Secondary host architecture variants:
225ifneq ($(HOST_PREFER_32_BIT),true)
226.PHONY: test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
227test-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 -0700228 test-art-host-run-test$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700229 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700230
Ian Rogersafd9acc2014-06-17 08:21:54 -0700231.PHONY: test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700232test-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 -0700233 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes5511f212011-08-12 18:07:45 -0700234
Ian Rogersafd9acc2014-06-17 08:21:54 -0700235.PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700236test-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 -0700237 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Nicolas Geoffray3a505222014-05-26 16:40:55 +0100238
Ian Rogersafd9acc2014-06-17 08:21:54 -0700239.PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700240test-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 -0700241 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800242
243.PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
244test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
245 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Andreas Gampe2fe07922014-04-21 07:50:39 -0700246endif
Brian Carlstrome24fa612011-09-29 00:53:55 -0700247
Aart Bik3e40f4a2015-07-07 17:09:41 -0700248# Dexdump/list regression test.
Aart Bika59032f2015-07-06 17:45:30 -0700249.PHONY: test-art-host-dexdump
Aart Bikb1b45be2015-08-28 11:09:29 -0700250test-art-host-dexdump: $(addprefix $(HOST_OUT_EXECUTABLES)/, dexdump2 dexlist)
Ying Wang882a4f32015-07-08 14:09:10 -0700251 ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests
Aart Bika59032f2015-07-06 17:45:30 -0700252
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700253########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700254# target test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700255
Ian Rogersafd9acc2014-06-17 08:21:54 -0700256# "mm test-art-target" to build and run all target tests.
257.PHONY: test-art-target
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700258test-art-target: test-art-target-gtest test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700259 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
260
261# All target tests that run solely with the default compiler.
262.PHONY: test-art-target-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700263test-art-target-default: test-art-target-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700264 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
265
266# All target tests that run solely with the optimizing compiler.
267.PHONY: test-art-target-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700268test-art-target-optimizing: test-art-target-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700269 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
270
271# All target tests that run solely on the interpreter.
272.PHONY: test-art-target-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700273test-art-target-interpreter: test-art-target-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700274 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
275
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800276# All target tests that run solely on the jit.
277.PHONY: test-art-target-jit
278test-art-target-jit: test-art-target-run-test-jit
279 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
280
Ian Rogersafd9acc2014-06-17 08:21:54 -0700281# Primary target architecture variants:
282.PHONY: test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX)
283test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(ART_PHONY_TEST_TARGET_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700284 test-art-target-run-test$(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-default$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700288test-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 -0700289 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
290
291.PHONY: test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700292test-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 -0700293 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
294
295.PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700296test-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 -0700297 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
298
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800299.PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
300test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
301 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
302
Ian Rogersafd9acc2014-06-17 08:21:54 -0700303# Secondary target architecture variants:
Dan Willemsen5d2dbf82018-04-11 12:31:11 -0700304ifdef 2ND_ART_PHONY_TEST_TARGET_SUFFIX
Ian Rogersafd9acc2014-06-17 08:21:54 -0700305.PHONY: test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
306test-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 -0700307 test-art-target-run-test$(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-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700311test-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 -0700312 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
313
314.PHONY: test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700315test-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 -0700316 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
317
318.PHONY: test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700319test-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 -0700320 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800321
322.PHONY: test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
323test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
324 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700325endif
326
Dan Willemsencd8a0572016-09-16 17:11:36 -0700327
Andreas Gampe760a58f2017-06-22 15:21:09 -0700328#######################
Roland Levillain53058802018-11-14 17:32:18 +0000329# Android Runtime APEX.
330
331include $(CLEAR_VARS)
Roland Levillaine56607a2018-11-16 19:40:25 +0000332
333# The Android Runtime APEX comes in two flavors:
334# - the release module (`com.android.runtime.release`), containing
335# only "release" artifacts;
336# - the debug module (`com.android.runtime.debug`), containing both
337# "release" and "debug" artifacts, as well as additional tools.
338#
339# The Android Runtime APEX module (`com.android.runtime`) is an
340# "alias" for one of the previous modules. By default, "user" build
341# variants contain the release module, while "userdebug" and "eng"
342# build variant contain the debug module. However, if
343# `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is defined, it overrides
344# the previous logic:
345# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `false`, the
346# build will include the release module (whatever the build
347# variant);
348# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `true`, the
349# build will include the debug module (whatever the build variant).
350
351art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
352ifneq (false,$(art_target_include_debug_build))
353 ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
354 art_target_include_debug_build := true
355 endif
356endif
357ifeq (true,$(art_target_include_debug_build))
358 # Module with both release and debug variants, as well as
359 # additional tools.
360 TARGET_RUNTIME_APEX := com.android.runtime.debug
361else
362 # Release module (without debug variants nor tools).
363 TARGET_RUNTIME_APEX := com.android.runtime.release
364endif
365
Roland Levillain53058802018-11-14 17:32:18 +0000366LOCAL_MODULE := com.android.runtime
Roland Levillaine56607a2018-11-16 19:40:25 +0000367LOCAL_REQUIRED_MODULES := $(TARGET_RUNTIME_APEX)
368
369# Clear locally used variable.
370art_target_include_debug_build :=
371
Roland Levillain53058802018-11-14 17:32:18 +0000372include $(BUILD_PHONY_PACKAGE)
373
374
375#######################
Andreas Gampe760a58f2017-06-22 15:21:09 -0700376# Fake packages for ART
377
378# The art-runtime package depends on the core ART libraries and binaries. It exists so we can
379# manipulate the set of things shipped, e.g., add debug versions and so on.
380
381include $(CLEAR_VARS)
382LOCAL_MODULE := art-runtime
383
384# Base requirements.
385LOCAL_REQUIRED_MODULES := \
386 dalvikvm \
387 dex2oat \
388 dexoptanalyzer \
389 libart \
390 libart-compiler \
391 libopenjdkjvm \
392 libopenjdkjvmti \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700393 profman \
Alex Lightfbf96702017-12-14 13:27:13 -0800394 libadbconnection \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700395
396# For nosy apps, we provide a fake library that avoids namespace issues and gives some warnings.
397LOCAL_REQUIRED_MODULES += libart_fake
398
Andreas Gampeb4949032017-06-22 15:24:41 -0700399# Potentially add in debug variants:
400#
401# * We will never add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = false.
402# * We will always add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = true.
403# * Otherwise, we will add them by default to userdebug and eng builds.
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700404art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
405ifneq (false,$(art_target_include_debug_build))
406ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
407 art_target_include_debug_build := true
Andreas Gampeb4949032017-06-22 15:24:41 -0700408endif
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700409ifeq (true,$(art_target_include_debug_build))
Andreas Gampeb4949032017-06-22 15:24:41 -0700410LOCAL_REQUIRED_MODULES += \
Andreas Gampe3d14d2b2017-07-18 08:36:16 -0700411 dex2oatd \
412 dexoptanalyzerd \
Andreas Gampeb4949032017-06-22 15:24:41 -0700413 libartd \
414 libartd-compiler \
Andreas Gampeb8c7f1a2017-07-12 12:59:50 -0700415 libopenjdkd \
Andreas Gampeb4949032017-06-22 15:24:41 -0700416 libopenjdkjvmd \
417 libopenjdkjvmtid \
Andreas Gampe3d14d2b2017-07-18 08:36:16 -0700418 profmand \
Alex Lightfbf96702017-12-14 13:27:13 -0800419 libadbconnectiond \
Andreas Gampeb4949032017-06-22 15:24:41 -0700420
421endif
422endif
423
Andreas Gampe760a58f2017-06-22 15:21:09 -0700424include $(BUILD_PHONY_PACKAGE)
425
426# The art-tools package depends on helpers and tools that are useful for developers and on-device
427# investigations.
428
429include $(CLEAR_VARS)
430LOCAL_MODULE := art-tools
431LOCAL_REQUIRED_MODULES := \
432 ahat \
433 dexdiag \
434 dexdump \
435 dexlist \
436 hprof-conv \
437 oatdump \
438
439include $(BUILD_PHONY_PACKAGE)
440
Andreas Gampe10edbb12016-01-06 17:59:49 -0800441####################################################################################################
442# Fake packages to ensure generation of libopenjdkd when one builds with mm/mmm/mmma.
443#
444# The library is required for starting a runtime in debug mode, but libartd does not depend on it
445# (dependency cycle otherwise).
446#
447# Note: * As the package is phony to create a dependency the package name is irrelevant.
448# * We make MULTILIB explicit to "both," just to state here that we want both libraries on
449# 64-bit systems, even if it is the default.
450
451# ART on the host.
452ifeq ($(ART_BUILD_HOST_DEBUG),true)
453include $(CLEAR_VARS)
454LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency
455LOCAL_MULTILIB := both
456LOCAL_REQUIRED_MODULES := libopenjdkd
457LOCAL_IS_HOST_MODULE := true
458include $(BUILD_PHONY_PACKAGE)
459endif
460
461# ART on the target.
462ifeq ($(ART_BUILD_TARGET_DEBUG),true)
463include $(CLEAR_VARS)
464LOCAL_MODULE := art-libartd-libopenjdkd-target-dependency
465LOCAL_MULTILIB := both
466LOCAL_REQUIRED_MODULES := libopenjdkd
467include $(BUILD_PHONY_PACKAGE)
468endif
469
Nicolas Geoffrayab4825d2018-02-05 16:12:52 +0000470# Create dummy hidden API lists which are normally generated by the framework
471# but which we do not have in the master-art manifest.
472# We need to execute this now to ensure Makefile rules depending on these files can
473# be constructed.
474define build-art-hiddenapi
475$(shell if [ ! -d frameworks/base ]; then \
476 mkdir -p ${TARGET_OUT_COMMON_INTERMEDIATES}/PACKAGING; \
David Brazdila9080572018-11-30 14:15:57 +0000477 touch ${TARGET_OUT_COMMON_INTERMEDIATES}/PACKAGING/hiddenapi-flags.csv; \
Nicolas Geoffrayab4825d2018-02-05 16:12:52 +0000478 fi;)
479endef
480
481$(eval $(call build-art-hiddenapi))
482
Brian Carlstrom76aa0c02011-10-11 15:29:43 -0700483########################################################################
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700484# "m build-art" for quick minimal build
485.PHONY: build-art
486build-art: build-art-host build-art-target
487
488.PHONY: build-art-host
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700489build-art-host: $(HOST_OUT_EXECUTABLES)/art $(ART_HOST_DEPENDENCIES) $(HOST_CORE_IMG_OUTS)
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700490
491.PHONY: build-art-target
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700492build-art-target: $(TARGET_OUT_EXECUTABLES)/art $(ART_TARGET_DEPENDENCIES) $(TARGET_CORE_IMG_OUTS)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000493
494########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100495# Phony target for only building what go/lem requires for pushing ART on /data.
Nicolas Geoffrayab4825d2018-02-05 16:12:52 +0000496
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100497.PHONY: build-art-target-golem
Igor Murashkin017efa82016-09-22 15:46:29 -0700498# Also include libartbenchmark, we always include it when running golem.
Nicolas Geoffraye137a212016-12-08 13:49:54 +0000499# libstdc++ is needed when building for ART_TARGET_LINUX.
Igor Murashkin017efa82016-09-22 15:46:29 -0700500ART_TARGET_SHARED_LIBRARY_BENCHMARK := $(TARGET_OUT_SHARED_LIBRARIES)/libartbenchmark.so
Vladimir Markoa497a392018-09-26 10:52:50 +0100501build-art-target-golem: dex2oat dalvikvm linker libstdc++ \
Nicolas Geoffray51216912017-03-16 12:39:50 +0000502 $(TARGET_OUT_EXECUTABLES)/art \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100503 $(TARGET_OUT)/etc/public.libraries.txt \
504 $(ART_TARGET_DEX_DEPENDENCIES) \
505 $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES) \
Igor Murashkin017efa82016-09-22 15:46:29 -0700506 $(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100507 $(TARGET_CORE_IMG_OUT_BASE).art \
508 $(TARGET_CORE_IMG_OUT_BASE)-interpreter.art
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100509 # remove debug libraries from public.libraries.txt because golem builds
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000510 # won't have it.
Nicolas Geoffray3bf94292018-02-04 14:48:34 +0000511 sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000512 sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100513 sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray763a14a2018-05-21 13:16:51 +0100514 sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100515
516########################################################################
Igor Murashkin017efa82016-09-22 15:46:29 -0700517# Phony target for building what go/lem requires on host.
518.PHONY: build-art-host-golem
519# Also include libartbenchmark, we always include it when running golem.
520ART_HOST_SHARED_LIBRARY_BENCHMARK := $(ART_HOST_OUT_SHARED_LIBRARIES)/libartbenchmark.so
521build-art-host-golem: build-art-host \
522 $(ART_HOST_SHARED_LIBRARY_BENCHMARK)
523
524########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100525# Phony target for building what go/lem requires for syncing /system to target.
526.PHONY: build-art-unbundled-golem
Nicolas Geoffraycf053a52017-11-15 15:10:09 +0000527build-art-unbundled-golem: art-runtime linker oatdump $(TARGET_CORE_JARS) crash_dump
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100528
529########################################################################
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100530# Rules for building all dependencies for tests.
531
532.PHONY: build-art-host-tests
Yohann Roussel05b91252015-12-09 12:02:46 +0100533build-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 +0100534
535.PHONY: build-art-target-tests
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +0100536build-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 +0100537
538########################################################################
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700539# targets to switch back and forth from libdvm to libart
540
541.PHONY: use-art
542use-art:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100543 $(ADB) root
544 $(ADB) wait-for-device shell stop
545 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
546 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700547
548.PHONY: use-artd
549use-artd:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100550 $(ADB) root
551 $(ADB) wait-for-device shell stop
552 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
553 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700554
555.PHONY: use-dalvik
556use-dalvik:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100557 $(ADB) root
558 $(ADB) wait-for-device shell stop
559 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so
560 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800561
562.PHONY: use-art-full
563use-art-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100564 $(ADB) root
565 $(ADB) wait-for-device shell stop
566 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
567 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
568 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
569 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
570 $(ADB) shell setprop dalvik.vm.usejit false
571 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800572
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700573.PHONY: use-artd-full
574use-artd-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100575 $(ADB) root
576 $(ADB) wait-for-device shell stop
577 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
578 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
579 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
580 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
581 $(ADB) shell setprop dalvik.vm.usejit false
582 $(ADB) shell start
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700583
Mathieu Chartierd71795b2015-07-14 16:59:23 -0700584.PHONY: use-art-jit
585use-art-jit:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100586 $(ADB) root
587 $(ADB) wait-for-device shell stop
588 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
589 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-at-runtime"
590 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime"
591 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
592 $(ADB) shell setprop dalvik.vm.usejit true
593 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800594
595.PHONY: use-art-interpret-only
596use-art-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100597 $(ADB) root
598 $(ADB) wait-for-device shell stop
599 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
600 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
601 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
602 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
603 $(ADB) shell setprop dalvik.vm.usejit false
604 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700605
Sebastien Hertz15582b92014-07-04 10:53:22 +0200606.PHONY: use-artd-interpret-only
607use-artd-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100608 $(ADB) root
609 $(ADB) wait-for-device shell stop
610 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
611 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
612 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
613 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
614 $(ADB) shell setprop dalvik.vm.usejit false
615 $(ADB) shell start
Sebastien Hertz15582b92014-07-04 10:53:22 +0200616
Jeff Hao4a200f52014-04-01 14:58:49 -0700617.PHONY: use-art-verify-none
618use-art-verify-none:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100619 $(ADB) root
620 $(ADB) wait-for-device shell stop
621 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
622 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-none"
623 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-none"
624 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
625 $(ADB) shell setprop dalvik.vm.usejit false
626 $(ADB) shell start
Jeff Hao4a200f52014-04-01 14:58:49 -0700627
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700628########################################################################
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700629
Ian Rogers8f0bbd22014-09-26 15:31:20 -0700630# Clear locally used variables.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100631TEST_ART_TARGET_SYNC_DEPS :=
Narayan Kamath0095d882016-02-12 16:09:58 +0000632
Andreas Gampefad48e72016-04-11 11:57:18 -0700633# Helper target that depends on boot image creation.
634#
635# Can be used, for example, to dump initialization failures:
636# m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt
637.PHONY: art-boot-image
638art-boot-image: $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME)
Calin Juravlef01de112016-10-24 12:40:19 +0100639
640.PHONY: art-job-images
641art-job-images: \
642 $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \
643 $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \
644 $(HOST_OUT_EXECUTABLES)/dex2oats \
645 $(HOST_OUT_EXECUTABLES)/dex2oatds \
646 $(HOST_OUT_EXECUTABLES)/profman