blob: e4cc5c04ff76ea17143586f84bf21062eb0bdcaa [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)/*/*
44 $(ADB) shell rm -rf $(DEXPREOPT_BOOT_JAR_DIR)/$(DEX2OAT_TARGET_ARCH)
45 $(ADB) shell rm -rf system/app/$(DEX2OAT_TARGET_ARCH)
Brian Carlstromf662e062014-05-19 16:09:42 -070046ifdef TARGET_2ND_ARCH
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010047 $(ADB) shell rm -rf $(DEXPREOPT_BOOT_JAR_DIR)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)
48 $(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
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +000061include $(art_path)/tools/Android.mk
Richard Uhlerb730b782015-07-15 16:01:58 -070062include $(art_path)/tools/ahat/Android.mk
Richard Uhlerd9caa9b2018-02-14 11:08:13 +000063include $(art_path)/tools/amm/Android.mk
Stephen Kyle959ffdf2014-11-28 14:27:44 +000064include $(art_path)/tools/dexfuzz/Android.mk
Nicolas Geoffrayd1ef7172018-03-28 09:16:31 +010065include $(art_path)/tools/veridex/Android.mk
Dave Allisonf4b80bc2014-05-14 15:41:25 -070066
Brian Carlstrom532714a2014-06-25 02:15:31 -070067ART_HOST_DEPENDENCIES := \
Richard Uhlerc5a00042016-07-01 13:10:56 -070068 $(ART_HOST_EXECUTABLES) \
69 $(ART_HOST_DEX_DEPENDENCIES) \
70 $(ART_HOST_SHARED_LIBRARY_DEPENDENCIES)
Alex Light7b497ee2017-05-25 09:54:15 -070071
72ifeq ($(ART_BUILD_HOST_DEBUG),true)
73ART_HOST_DEPENDENCIES += $(ART_HOST_SHARED_LIBRARY_DEBUG_DEPENDENCIES)
74endif
75
Brian Carlstrom532714a2014-06-25 02:15:31 -070076ART_TARGET_DEPENDENCIES := \
Richard Uhlerc5a00042016-07-01 13:10:56 -070077 $(ART_TARGET_EXECUTABLES) \
78 $(ART_TARGET_DEX_DEPENDENCIES) \
79 $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES)
Brian Carlstrom15803792012-03-13 00:53:08 -070080
Alex Light7b497ee2017-05-25 09:54:15 -070081ifeq ($(ART_BUILD_TARGET_DEBUG),true)
82ART_TARGET_DEPENDENCIES += $(ART_TARGET_SHARED_LIBRARY_DEBUG_DEPENDENCIES)
83endif
84
Brian Carlstromb2793372012-03-17 18:27:16 -070085########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -070086# test rules
Brian Carlstrom15803792012-03-13 00:53:08 -070087
Ian Rogersafd9acc2014-06-17 08:21:54 -070088# All the dependencies that must be built ahead of sync-ing them onto the target device.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010089TEST_ART_TARGET_SYNC_DEPS := $(ADB_EXECUTABLE)
Brian Carlstromb2793372012-03-17 18:27:16 -070090
Ian Rogersafd9acc2014-06-17 08:21:54 -070091include $(art_path)/build/Android.common_test.mk
92include $(art_path)/build/Android.gtest.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070093include $(art_path)/test/Android.run-test.mk
Andreas Gampe2fe07922014-04-21 07:50:39 -070094
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +010095TEST_ART_TARGET_SYNC_DEPS += $(ART_TEST_TARGET_GTEST_DEPENDENCIES) $(ART_TEST_TARGET_RUN_TEST_DEPENDENCIES)
Nicolas Geoffray17b1dcb2018-10-12 15:09:42 +010096
Roland Levillain57981952018-08-03 14:06:21 +010097# Make sure /system is writable on the device.
Alex Light53fc75a2015-11-20 15:35:48 -080098TEST_ART_ADB_ROOT_AND_REMOUNT := \
Nicolas Geoffray64c2d772018-08-31 09:22:44 +010099 ($(ADB) root && \
100 $(ADB) wait-for-device remount && \
101 (($(ADB) shell touch /system/testfile && \
102 ($(ADB) shell rm /system/testfile || true)) || \
103 ($(ADB) disable-verity && \
104 $(ADB) reboot && \
105 $(ADB) wait-for-device root && \
106 $(ADB) wait-for-device remount)))
Alex Light53fc75a2015-11-20 15:35:48 -0800107
Ian Rogersafd9acc2014-06-17 08:21:54 -0700108# Sync test files to the target, depends upon all things that must be pushed to the target.
109.PHONY: test-art-target-sync
Roland Levillain76cfe612017-10-30 13:14:28 +0000110# Check if we need to sync. In case ART_TEST_CHROOT or ART_TEST_ANDROID_ROOT
111# is not empty, the code below uses 'adb push' instead of 'adb sync',
112# which does not check if the files on the device have changed.
113# TODO: Remove support for ART_TEST_ANDROID_ROOT when it is no longer needed.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100114ifneq ($(ART_TEST_NO_SYNC),true)
Roland Levillain76cfe612017-10-30 13:14:28 +0000115# Sync system and data partitions.
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000116ifeq ($(ART_TEST_ANDROID_ROOT),)
Roland Levillain76cfe612017-10-30 13:14:28 +0000117ifeq ($(ART_TEST_CHROOT),)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700118test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
Alex Light53fc75a2015-11-20 15:35:48 -0800119 $(TEST_ART_ADB_ROOT_AND_REMOUNT)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100120 $(ADB) sync system && $(ADB) sync data
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000121else
Roland Levillain57981952018-08-03 14:06:21 +0100122# TEST_ART_ADB_ROOT_AND_REMOUNT is not needed here, as we are only
123# pushing things to the chroot dir, which is expected to be under
124# /data on the device.
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000125test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100126 $(ADB) wait-for-device
127 $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)/
128 $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/
Roland Levillain76cfe612017-10-30 13:14:28 +0000129endif
130else
131test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS)
132 $(TEST_ART_ADB_ROOT_AND_REMOUNT)
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100133 $(ADB) wait-for-device
134 $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)$(ART_TEST_ANDROID_ROOT)
Roland Levillain76cfe612017-10-30 13:14:28 +0000135# Push the contents of the `data` dir into `$(ART_TEST_CHROOT)/data` on the device (note
136# that $(ART_TEST_CHROOT) can be empty). If `$(ART_TEST_CHROOT)/data` already exists on
137# the device, it is not overwritten, but its content is updated.
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100138 $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/
Nicolas Geoffrayc8f23fc2014-10-28 17:59:47 +0000139endif
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100140endif
Brian Carlstrom934486c2011-07-12 23:42:50 -0700141
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700142# "mm test-art" to build and run all tests on host and device
143.PHONY: test-art
144test-art: test-art-host test-art-target
Ian Rogersafd9acc2014-06-17 08:21:54 -0700145 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700146
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700147.PHONY: test-art-gtest
Brian Carlstromb2793372012-03-17 18:27:16 -0700148test-art-gtest: test-art-host-gtest test-art-target-gtest
Ian Rogersafd9acc2014-06-17 08:21:54 -0700149 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700150
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700151.PHONY: test-art-run-test
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700152test-art-run-test: test-art-host-run-test test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700153 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom08981ab2012-05-25 18:40:15 -0700154
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700155########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700156# host test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700157
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700158VIXL_TEST_DEPENDENCY :=
159# We can only run the vixl tests on 64-bit hosts (vixl testing issue) when its a
160# top-level build (to declare the vixl test rule).
Ian Rogersafd9acc2014-06-17 08:21:54 -0700161ifneq ($(HOST_PREFER_32_BIT),true)
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700162ifeq ($(ONE_SHOT_MAKEFILE),)
163VIXL_TEST_DEPENDENCY := run-vixl-tests
Andreas Gampe3c033572014-05-13 08:41:48 -0700164endif
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700165endif
166
Ian Rogersafd9acc2014-06-17 08:21:54 -0700167.PHONY: test-art-host-vixl
Ian Rogers7a4c1c12014-05-18 13:03:52 -0700168test-art-host-vixl: $(VIXL_TEST_DEPENDENCY)
Andreas Gampe3c033572014-05-13 08:41:48 -0700169
Ian Rogersafd9acc2014-06-17 08:21:54 -0700170# "mm test-art-host" to build and run all host tests.
Brian Carlstrom934486c2011-07-12 23:42:50 -0700171.PHONY: test-art-host
Aart Bika59032f2015-07-06 17:45:30 -0700172test-art-host: test-art-host-gtest test-art-host-run-test \
173 test-art-host-vixl test-art-host-dexdump
Ian Rogersafd9acc2014-06-17 08:21:54 -0700174 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstrom59848da2011-07-23 20:35:19 -0700175
Ian Rogersafd9acc2014-06-17 08:21:54 -0700176# All host tests that run solely with the default compiler.
177.PHONY: test-art-host-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700178test-art-host-default: test-art-host-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700179 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
180
181# All host tests that run solely with the optimizing compiler.
182.PHONY: test-art-host-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700183test-art-host-optimizing: test-art-host-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700184 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
185
186# All host tests that run solely on the interpreter.
Ian Rogers85d9ba62013-01-16 22:32:12 -0800187.PHONY: test-art-host-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700188test-art-host-interpreter: test-art-host-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700189 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogers85d9ba62013-01-16 22:32:12 -0800190
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800191# All host tests that run solely on the jit.
192.PHONY: test-art-host-jit
193test-art-host-jit: test-art-host-run-test-jit
194 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
195
Ian Rogersafd9acc2014-06-17 08:21:54 -0700196# Primary host architecture variants:
197.PHONY: test-art-host$(ART_PHONY_TEST_HOST_SUFFIX)
198test-art-host$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(ART_PHONY_TEST_HOST_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700199 test-art-host-run-test$(ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700200 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb0aa9d32012-04-07 23:12:22 -0700201
Ian Rogersafd9acc2014-06-17 08:21:54 -0700202.PHONY: test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700203test-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 -0700204 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes2cae5a22011-08-14 14:27:25 -0700205
Ian Rogersafd9acc2014-06-17 08:21:54 -0700206.PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700207test-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 -0700208 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromb2793372012-03-17 18:27:16 -0700209
Ian Rogersafd9acc2014-06-17 08:21:54 -0700210.PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700211test-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 -0700212 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700213
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800214.PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX)
215test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUFFIX)
216 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
217
Ian Rogersafd9acc2014-06-17 08:21:54 -0700218# Secondary host architecture variants:
219ifneq ($(HOST_PREFER_32_BIT),true)
220.PHONY: test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
221test-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 -0700222 test-art-host-run-test$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700223 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Brian Carlstromdbaa93a2013-07-31 15:13:10 -0700224
Ian Rogersafd9acc2014-06-17 08:21:54 -0700225.PHONY: test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700226test-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 -0700227 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Elliott Hughes5511f212011-08-12 18:07:45 -0700228
Ian Rogersafd9acc2014-06-17 08:21:54 -0700229.PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700230test-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 -0700231 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Nicolas Geoffray3a505222014-05-26 16:40:55 +0100232
Ian Rogersafd9acc2014-06-17 08:21:54 -0700233.PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700234test-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 -0700235 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier3fc1b122015-02-26 10:58:08 -0800236
237.PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
238test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
239 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Andreas Gampe2fe07922014-04-21 07:50:39 -0700240endif
Brian Carlstrome24fa612011-09-29 00:53:55 -0700241
Aart Bik3e40f4a2015-07-07 17:09:41 -0700242# Dexdump/list regression test.
Aart Bika59032f2015-07-06 17:45:30 -0700243.PHONY: test-art-host-dexdump
Aart Bikb1b45be2015-08-28 11:09:29 -0700244test-art-host-dexdump: $(addprefix $(HOST_OUT_EXECUTABLES)/, dexdump2 dexlist)
Ying Wang882a4f32015-07-08 14:09:10 -0700245 ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests
Aart Bika59032f2015-07-06 17:45:30 -0700246
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700247########################################################################
Ian Rogersafd9acc2014-06-17 08:21:54 -0700248# target test rules
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700249
Ian Rogersafd9acc2014-06-17 08:21:54 -0700250# "mm test-art-target" to build and run all target tests.
251.PHONY: test-art-target
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700252test-art-target: test-art-target-gtest test-art-target-run-test
Ian Rogersafd9acc2014-06-17 08:21:54 -0700253 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
254
255# All target tests that run solely with the default compiler.
256.PHONY: test-art-target-default
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700257test-art-target-default: test-art-target-run-test-default
Ian Rogersafd9acc2014-06-17 08:21:54 -0700258 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
259
260# All target tests that run solely with the optimizing compiler.
261.PHONY: test-art-target-optimizing
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700262test-art-target-optimizing: test-art-target-run-test-optimizing
Ian Rogersafd9acc2014-06-17 08:21:54 -0700263 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
264
265# All target tests that run solely on the interpreter.
266.PHONY: test-art-target-interpreter
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700267test-art-target-interpreter: test-art-target-run-test-interpreter
Ian Rogersafd9acc2014-06-17 08:21:54 -0700268 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
269
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800270# All target tests that run solely on the jit.
271.PHONY: test-art-target-jit
272test-art-target-jit: test-art-target-run-test-jit
273 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
274
Ian Rogersafd9acc2014-06-17 08:21:54 -0700275# Primary target architecture variants:
276.PHONY: test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX)
277test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(ART_PHONY_TEST_TARGET_SUFFIX) \
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700278 test-art-target-run-test$(ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700279 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
280
281.PHONY: test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700282test-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 -0700283 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
284
285.PHONY: test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700286test-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 -0700287 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
288
289.PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700290test-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 -0700291 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
292
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800293.PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
294test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
295 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
296
Ian Rogersafd9acc2014-06-17 08:21:54 -0700297# Secondary target architecture variants:
Dan Willemsen5d2dbf82018-04-11 12:31:11 -0700298ifdef 2ND_ART_PHONY_TEST_TARGET_SUFFIX
Ian Rogersafd9acc2014-06-17 08:21:54 -0700299.PHONY: test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
300test-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 -0700301 test-art-target-run-test$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700302 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
303
304.PHONY: test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700305test-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 -0700306 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
307
308.PHONY: test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700309test-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 -0700310 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
311
312.PHONY: test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
Andreas Gampe1c83cbc2014-07-22 18:52:29 -0700313test-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 -0700314 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Mathieu Chartier721f3a82015-02-27 10:39:48 -0800315
316.PHONY: test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
317test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)
318 $(hide) $(call ART_TEST_PREREQ_FINISHED,$@)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700319endif
320
Dan Willemsencd8a0572016-09-16 17:11:36 -0700321
Andreas Gampe760a58f2017-06-22 15:21:09 -0700322#######################
Roland Levillain53058802018-11-14 17:32:18 +0000323# Android Runtime APEX.
324
325include $(CLEAR_VARS)
Roland Levillaine56607a2018-11-16 19:40:25 +0000326
327# The Android Runtime APEX comes in two flavors:
328# - the release module (`com.android.runtime.release`), containing
329# only "release" artifacts;
330# - the debug module (`com.android.runtime.debug`), containing both
331# "release" and "debug" artifacts, as well as additional tools.
332#
333# The Android Runtime APEX module (`com.android.runtime`) is an
334# "alias" for one of the previous modules. By default, "user" build
335# variants contain the release module, while "userdebug" and "eng"
336# build variant contain the debug module. However, if
337# `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is defined, it overrides
338# the previous logic:
339# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `false`, the
340# build will include the release module (whatever the build
341# variant);
342# - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `true`, the
343# build will include the debug module (whatever the build variant).
344
345art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
346ifneq (false,$(art_target_include_debug_build))
347 ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
348 art_target_include_debug_build := true
349 endif
350endif
351ifeq (true,$(art_target_include_debug_build))
352 # Module with both release and debug variants, as well as
353 # additional tools.
354 TARGET_RUNTIME_APEX := com.android.runtime.debug
Jiyong Park1410e9f2019-02-02 04:18:23 +0000355 APEX_TEST_MODULE := art-check-debug-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000356else
357 # Release module (without debug variants nor tools).
358 TARGET_RUNTIME_APEX := com.android.runtime.release
Jiyong Park1410e9f2019-02-02 04:18:23 +0000359 APEX_TEST_MODULE := art-check-release-apex-gen-fakebin
Roland Levillaine56607a2018-11-16 19:40:25 +0000360endif
361
Roland Levillain53058802018-11-14 17:32:18 +0000362LOCAL_MODULE := com.android.runtime
Andreas Gampef36079a2019-01-29 21:36:22 +0000363LOCAL_REQUIRED_MODULES := $(TARGET_RUNTIME_APEX)
Jiyong Park1410e9f2019-02-02 04:18:23 +0000364ifneq ($(HOST_OS),darwin)
365 LOCAL_REQUIRED_MODULES += $(APEX_TEST_MODULE)
366endif
Roland Levillaine56607a2018-11-16 19:40:25 +0000367
368# Clear locally used variable.
369art_target_include_debug_build :=
370
Roland Levillain53058802018-11-14 17:32:18 +0000371include $(BUILD_PHONY_PACKAGE)
372
373
374#######################
Andreas Gampe760a58f2017-06-22 15:21:09 -0700375# Fake packages for ART
376
377# The art-runtime package depends on the core ART libraries and binaries. It exists so we can
378# manipulate the set of things shipped, e.g., add debug versions and so on.
379
380include $(CLEAR_VARS)
381LOCAL_MODULE := art-runtime
382
383# Base requirements.
384LOCAL_REQUIRED_MODULES := \
385 dalvikvm \
386 dex2oat \
387 dexoptanalyzer \
388 libart \
389 libart-compiler \
390 libopenjdkjvm \
391 libopenjdkjvmti \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700392 profman \
Alex Lightfbf96702017-12-14 13:27:13 -0800393 libadbconnection \
Andreas Gampe760a58f2017-06-22 15:21:09 -0700394
Andreas Gampeb4949032017-06-22 15:24:41 -0700395# Potentially add in debug variants:
396#
397# * We will never add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = false.
398# * We will always add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = true.
399# * Otherwise, we will add them by default to userdebug and eng builds.
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700400art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)
401ifneq (false,$(art_target_include_debug_build))
402ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
403 art_target_include_debug_build := true
Andreas Gampeb4949032017-06-22 15:24:41 -0700404endif
Andreas Gampe5ed27bc2017-07-06 15:43:12 -0700405ifeq (true,$(art_target_include_debug_build))
Andreas Gampeb4949032017-06-22 15:24:41 -0700406LOCAL_REQUIRED_MODULES += \
Andreas Gampe3d14d2b2017-07-18 08:36:16 -0700407 dex2oatd \
408 dexoptanalyzerd \
Andreas Gampeb4949032017-06-22 15:24:41 -0700409 libartd \
410 libartd-compiler \
Andreas Gampeb8c7f1a2017-07-12 12:59:50 -0700411 libopenjdkd \
Andreas Gampeb4949032017-06-22 15:24:41 -0700412 libopenjdkjvmd \
413 libopenjdkjvmtid \
Andreas Gampe3d14d2b2017-07-18 08:36:16 -0700414 profmand \
Alex Lightfbf96702017-12-14 13:27:13 -0800415 libadbconnectiond \
Andreas Gampeb4949032017-06-22 15:24:41 -0700416
417endif
418endif
419
Andreas Gampe760a58f2017-06-22 15:21:09 -0700420include $(BUILD_PHONY_PACKAGE)
421
422# The art-tools package depends on helpers and tools that are useful for developers and on-device
423# investigations.
424
425include $(CLEAR_VARS)
426LOCAL_MODULE := art-tools
427LOCAL_REQUIRED_MODULES := \
428 ahat \
429 dexdiag \
430 dexdump \
431 dexlist \
432 hprof-conv \
433 oatdump \
434
435include $(BUILD_PHONY_PACKAGE)
436
Andreas Gampe10edbb12016-01-06 17:59:49 -0800437####################################################################################################
438# Fake packages to ensure generation of libopenjdkd when one builds with mm/mmm/mmma.
439#
440# The library is required for starting a runtime in debug mode, but libartd does not depend on it
441# (dependency cycle otherwise).
442#
443# Note: * As the package is phony to create a dependency the package name is irrelevant.
444# * We make MULTILIB explicit to "both," just to state here that we want both libraries on
445# 64-bit systems, even if it is the default.
446
447# ART on the host.
448ifeq ($(ART_BUILD_HOST_DEBUG),true)
449include $(CLEAR_VARS)
450LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency
451LOCAL_MULTILIB := both
452LOCAL_REQUIRED_MODULES := libopenjdkd
453LOCAL_IS_HOST_MODULE := true
454include $(BUILD_PHONY_PACKAGE)
455endif
456
457# ART on the target.
458ifeq ($(ART_BUILD_TARGET_DEBUG),true)
459include $(CLEAR_VARS)
460LOCAL_MODULE := art-libartd-libopenjdkd-target-dependency
461LOCAL_MULTILIB := both
462LOCAL_REQUIRED_MODULES := libopenjdkd
463include $(BUILD_PHONY_PACKAGE)
464endif
465
Brian Carlstrom76aa0c02011-10-11 15:29:43 -0700466########################################################################
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700467# "m build-art" for quick minimal build
468.PHONY: build-art
469build-art: build-art-host build-art-target
470
471.PHONY: build-art-host
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700472build-art-host: $(HOST_OUT_EXECUTABLES)/art $(ART_HOST_DEPENDENCIES) $(HOST_CORE_IMG_OUTS)
Brian Carlstromfa50baa2013-08-02 01:00:27 -0700473
474.PHONY: build-art-target
Andreas Gampe63fc30e2014-10-24 21:58:16 -0700475build-art-target: $(TARGET_OUT_EXECUTABLES)/art $(ART_TARGET_DEPENDENCIES) $(TARGET_CORE_IMG_OUTS)
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000476
477########################################################################
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000478# Workaround for not using symbolic links for linker and bionic libraries
479# in a minimal setup (eg buildbot or golem).
480########################################################################
481
482PRIVATE_BIONIC_FILES := \
483 bin/bootstrap/linker \
484 bin/bootstrap/linker64 \
485 lib/bootstrap/libc.so \
486 lib/bootstrap/libm.so \
487 lib/bootstrap/libdl.so \
488 lib64/bootstrap/libc.so \
489 lib64/bootstrap/libm.so \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000490 lib64/bootstrap/libdl.so \
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000491
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000492PRIVATE_RUNTIME_DEPENDENCY_LIBS := \
493 lib/libnativebridge.so \
494 lib64/libnativebridge.so \
495 lib/libnativehelper.so \
496 lib64/libnativehelper.so \
497 lib/libdexfile_external.so \
498 lib64/libdexfile_external.so \
499 lib/libnativeloader.so \
500 lib64/libnativeloader.so \
501
502.PHONY: standalone-apex-files
503standalone-apex-files: libc.bootstrap libdl.bootstrap libm.bootstrap linker com.android.runtime.debug
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000504 for f in $(PRIVATE_BIONIC_FILES); do \
505 tf=$(TARGET_OUT)/$$f; \
506 if [ -f $$tf ]; then cp -f $$tf $$(echo $$tf | sed 's,bootstrap/,,'); fi; \
507 done
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000508 for f in $(PRIVATE_RUNTIME_DEPENDENCY_LIBS); do \
509 tf=$(TARGET_OUT)/../apex/com.android.runtime.debug/$$f; \
510 if [ -f $$tf ]; then cp -f $$tf $(TARGET_OUT)/$$f; fi; \
511 done
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000512
513########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100514# Phony target for only building what go/lem requires for pushing ART on /data.
Nicolas Geoffrayab4825d2018-02-05 16:12:52 +0000515
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100516.PHONY: build-art-target-golem
Igor Murashkin017efa82016-09-22 15:46:29 -0700517# Also include libartbenchmark, we always include it when running golem.
Nicolas Geoffraye137a212016-12-08 13:49:54 +0000518# libstdc++ is needed when building for ART_TARGET_LINUX.
Roland Levillainc3512812019-01-11 17:07:49 +0000519#
Roland Levillain40890c12019-01-13 22:48:38 +0000520# Also include the bootstrap Bionic libraries (libc, libdl, libm).
521# These are required as the "main" libc, libdl, and libm have moved to
522# the Runtime APEX. This is a temporary change needed until Golem
523# fully supports the Runtime APEX.
524# TODO(b/121117762): Remove this when the ART Buildbot and Golem have
525# full support for the Runtime APEX.
526#
Roland Levillainc3512812019-01-11 17:07:49 +0000527# Also include a copy of the ICU .dat prebuilt files in
528# /system/etc/icu on target (see module `icu-data-art-test`), so that
529# it can found even if the Runtime APEX is not available, by setting
530# the environment variable `ART_TEST_ANDROID_RUNTIME_ROOT` to
Roland Levillain40890c12019-01-13 22:48:38 +0000531# "/system" on device. This is a temporary change needed until Golem
532# fully supports the Runtime APEX.
Roland Levillainc3512812019-01-11 17:07:49 +0000533# TODO(b/121117762): Remove this when the ART Buildbot and Golem have
534# full support for the Runtime APEX.
Igor Murashkin017efa82016-09-22 15:46:29 -0700535ART_TARGET_SHARED_LIBRARY_BENCHMARK := $(TARGET_OUT_SHARED_LIBRARIES)/libartbenchmark.so
Vladimir Markoa497a392018-09-26 10:52:50 +0100536build-art-target-golem: dex2oat dalvikvm linker libstdc++ \
Nicolas Geoffray51216912017-03-16 12:39:50 +0000537 $(TARGET_OUT_EXECUTABLES)/art \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100538 $(TARGET_OUT)/etc/public.libraries.txt \
539 $(ART_TARGET_DEX_DEPENDENCIES) \
540 $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES) \
Igor Murashkin017efa82016-09-22 15:46:29 -0700541 $(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100542 $(TARGET_CORE_IMG_OUT_BASE).art \
Roland Levillainc3512812019-01-11 17:07:49 +0000543 $(TARGET_CORE_IMG_OUT_BASE)-interpreter.art \
Roland Levillain40890c12019-01-13 22:48:38 +0000544 libc.bootstrap libdl.bootstrap libm.bootstrap \
Nicolas Geoffray3c8e28a2019-01-31 15:22:10 +0000545 icu-data-art-test \
Nicolas Geoffray3f285b22019-02-14 14:08:55 +0000546 standalone-apex-files
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100547 # remove debug libraries from public.libraries.txt because golem builds
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000548 # won't have it.
Nicolas Geoffray3bf94292018-02-04 14:48:34 +0000549 sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray91aac092018-02-16 10:09:54 +0000550 sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray83b74192018-04-27 10:58:45 +0100551 sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffray763a14a2018-05-21 13:16:51 +0100552 sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt
Nicolas Geoffrayc2a58f32016-09-16 12:28:12 +0100553
554########################################################################
Igor Murashkin017efa82016-09-22 15:46:29 -0700555# Phony target for building what go/lem requires on host.
556.PHONY: build-art-host-golem
557# Also include libartbenchmark, we always include it when running golem.
558ART_HOST_SHARED_LIBRARY_BENCHMARK := $(ART_HOST_OUT_SHARED_LIBRARIES)/libartbenchmark.so
559build-art-host-golem: build-art-host \
560 $(ART_HOST_SHARED_LIBRARY_BENCHMARK)
561
562########################################################################
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100563# Phony target for building what go/lem requires for syncing /system to target.
564.PHONY: build-art-unbundled-golem
Nicolas Geoffraycf053a52017-11-15 15:10:09 +0000565build-art-unbundled-golem: art-runtime linker oatdump $(TARGET_CORE_JARS) crash_dump
Nicolas Geoffray5213b6c2017-08-14 13:32:15 +0100566
567########################################################################
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100568# Rules for building all dependencies for tests.
569
570.PHONY: build-art-host-tests
Yohann Roussel05b91252015-12-09 12:02:46 +0100571build-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 +0100572
573.PHONY: build-art-target-tests
Nicolas Geoffray375d4eb2018-10-12 15:23:56 +0100574build-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 +0100575
576########################################################################
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700577# targets to switch back and forth from libdvm to libart
578
579.PHONY: use-art
580use-art:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100581 $(ADB) root
582 $(ADB) wait-for-device shell stop
583 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
584 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700585
586.PHONY: use-artd
587use-artd:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100588 $(ADB) root
589 $(ADB) wait-for-device shell stop
590 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
591 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700592
593.PHONY: use-dalvik
594use-dalvik:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100595 $(ADB) root
596 $(ADB) wait-for-device shell stop
597 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so
598 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800599
600.PHONY: use-art-full
601use-art-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100602 $(ADB) root
603 $(ADB) wait-for-device shell stop
604 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
605 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
606 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
607 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
608 $(ADB) shell setprop dalvik.vm.usejit false
609 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800610
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700611.PHONY: use-artd-full
612use-artd-full:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100613 $(ADB) root
614 $(ADB) wait-for-device shell stop
615 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
616 $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\"
617 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\"
618 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
619 $(ADB) shell setprop dalvik.vm.usejit false
620 $(ADB) shell start
Hiroshi Yamauchicb9bccd2014-05-19 12:29:36 -0700621
Mathieu Chartierd71795b2015-07-14 16:59:23 -0700622.PHONY: use-art-jit
623use-art-jit:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100624 $(ADB) root
625 $(ADB) wait-for-device shell stop
626 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
627 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-at-runtime"
628 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime"
629 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
630 $(ADB) shell setprop dalvik.vm.usejit true
631 $(ADB) shell start
Brian Carlstrom1e895cd2014-03-06 23:17:15 -0800632
633.PHONY: use-art-interpret-only
634use-art-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100635 $(ADB) root
636 $(ADB) wait-for-device shell stop
637 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
638 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
639 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
640 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
641 $(ADB) shell setprop dalvik.vm.usejit false
642 $(ADB) shell start
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700643
Sebastien Hertz15582b92014-07-04 10:53:22 +0200644.PHONY: use-artd-interpret-only
645use-artd-interpret-only:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100646 $(ADB) root
647 $(ADB) wait-for-device shell stop
648 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
649 $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only"
650 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
651 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so
652 $(ADB) shell setprop dalvik.vm.usejit false
653 $(ADB) shell start
Sebastien Hertz15582b92014-07-04 10:53:22 +0200654
Jeff Hao4a200f52014-04-01 14:58:49 -0700655.PHONY: use-art-verify-none
656use-art-verify-none:
Nicolas Geoffray64c2d772018-08-31 09:22:44 +0100657 $(ADB) root
658 $(ADB) wait-for-device shell stop
659 $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*
660 $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-none"
661 $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-none"
662 $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so
663 $(ADB) shell setprop dalvik.vm.usejit false
664 $(ADB) shell start
Jeff Hao4a200f52014-04-01 14:58:49 -0700665
Brian Carlstroma7a60a82013-06-24 17:41:19 -0700666########################################################################
Brian Carlstrombc2f3e32011-09-22 17:16:54 -0700667
Ian Rogers8f0bbd22014-09-26 15:31:20 -0700668# Clear locally used variables.
Nicolas Geoffray58035ae2015-05-27 19:10:27 +0100669TEST_ART_TARGET_SYNC_DEPS :=
Narayan Kamath0095d882016-02-12 16:09:58 +0000670
Andreas Gampefad48e72016-04-11 11:57:18 -0700671# Helper target that depends on boot image creation.
672#
673# Can be used, for example, to dump initialization failures:
674# m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt
675.PHONY: art-boot-image
676art-boot-image: $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME)
Calin Juravlef01de112016-10-24 12:40:19 +0100677
678.PHONY: art-job-images
679art-job-images: \
680 $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \
681 $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \
682 $(HOST_OUT_EXECUTABLES)/dex2oats \
683 $(HOST_OUT_EXECUTABLES)/dex2oatds \
684 $(HOST_OUT_EXECUTABLES)/profman