Carl Shapiro | 7b21670 | 2011-06-17 15:09:26 -0700 | [diff] [blame] | 1 | # |
| 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 | |
| 17 | LOCAL_PATH := $(call my-dir) |
Carl Shapiro | 7b21670 | 2011-06-17 15:09:26 -0700 | [diff] [blame] | 18 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 19 | art_path := $(LOCAL_PATH) |
Brian Carlstrom | cdc8de4 | 2011-07-19 14:23:17 -0700 | [diff] [blame] | 20 | |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 21 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 22 | # clean-oat rules |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 23 | # |
| 24 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 25 | include $(art_path)/build/Android.common_path.mk |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 26 | include $(art_path)/build/Android.oat.mk |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 27 | |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 28 | .PHONY: clean-oat |
| 29 | clean-oat: clean-oat-host clean-oat-target |
| 30 | |
| 31 | .PHONY: clean-oat-host |
| 32 | clean-oat-host: |
Andreas Gampe | 602b785 | 2017-02-21 11:44:04 -0800 | [diff] [blame] | 33 | find $(OUT_DIR) -name "*.oat" -o -name "*.odex" -o -name "*.art" -o -name '*.vdex' | xargs rm -f |
Andreas Gampe | 5a79fde | 2014-08-06 13:12:26 -0700 | [diff] [blame] | 34 | ifneq ($(TMPDIR),) |
| 35 | rm -rf $(TMPDIR)/$(USER)/test-*/dalvik-cache/* |
| 36 | rm -rf $(TMPDIR)/android-data/dalvik-cache/* |
| 37 | else |
Dmitry Petrochenko | 81c56e7 | 2014-03-05 15:05:46 +0700 | [diff] [blame] | 38 | rm -rf /tmp/$(USER)/test-*/dalvik-cache/* |
Brian Carlstrom | ae08961 | 2014-05-01 13:52:23 -0700 | [diff] [blame] | 39 | rm -rf /tmp/android-data/dalvik-cache/* |
Andreas Gampe | 5a79fde | 2014-08-06 13:12:26 -0700 | [diff] [blame] | 40 | endif |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 41 | |
| 42 | .PHONY: clean-oat-target |
| 43 | clean-oat-target: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 44 | $(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 Carlstrom | f662e06 | 2014-05-19 16:09:42 -0700 | [diff] [blame] | 51 | ifdef TARGET_2ND_ARCH |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 52 | $(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 Carlstrom | f662e06 | 2014-05-19 16:09:42 -0700 | [diff] [blame] | 54 | endif |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 55 | $(ADB) shell rm -rf data/run-test/test-*/dalvik-cache/* |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 56 | |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 57 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 58 | # cpplint rules to style check art source files |
| 59 | |
| 60 | include $(art_path)/build/Android.cpplint.mk |
| 61 | |
| 62 | ######################################################################## |
| 63 | # product rules |
| 64 | |
Colin Cross | 35235cb | 2016-09-09 11:19:32 -0700 | [diff] [blame] | 65 | include $(art_path)/oatdump/Android.mk |
Nicolas Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 66 | include $(art_path)/tools/Android.mk |
Richard Uhler | b730b78 | 2015-07-15 16:01:58 -0700 | [diff] [blame] | 67 | include $(art_path)/tools/ahat/Android.mk |
Richard Uhler | d9caa9b | 2018-02-14 11:08:13 +0000 | [diff] [blame] | 68 | include $(art_path)/tools/amm/Android.mk |
Stephen Kyle | 959ffdf | 2014-11-28 14:27:44 +0000 | [diff] [blame] | 69 | include $(art_path)/tools/dexfuzz/Android.mk |
Nicolas Geoffray | d1ef717 | 2018-03-28 09:16:31 +0100 | [diff] [blame] | 70 | include $(art_path)/tools/veridex/Android.mk |
Alex Light | ee17426 | 2016-04-15 12:41:09 -0700 | [diff] [blame] | 71 | include $(art_path)/libart_fake/Android.mk |
Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 72 | |
Brian Carlstrom | 532714a | 2014-06-25 02:15:31 -0700 | [diff] [blame] | 73 | ART_HOST_DEPENDENCIES := \ |
Richard Uhler | c5a0004 | 2016-07-01 13:10:56 -0700 | [diff] [blame] | 74 | $(ART_HOST_EXECUTABLES) \ |
| 75 | $(ART_HOST_DEX_DEPENDENCIES) \ |
| 76 | $(ART_HOST_SHARED_LIBRARY_DEPENDENCIES) |
Alex Light | 7b497ee | 2017-05-25 09:54:15 -0700 | [diff] [blame] | 77 | |
| 78 | ifeq ($(ART_BUILD_HOST_DEBUG),true) |
| 79 | ART_HOST_DEPENDENCIES += $(ART_HOST_SHARED_LIBRARY_DEBUG_DEPENDENCIES) |
| 80 | endif |
| 81 | |
Brian Carlstrom | 532714a | 2014-06-25 02:15:31 -0700 | [diff] [blame] | 82 | ART_TARGET_DEPENDENCIES := \ |
Richard Uhler | c5a0004 | 2016-07-01 13:10:56 -0700 | [diff] [blame] | 83 | $(ART_TARGET_EXECUTABLES) \ |
| 84 | $(ART_TARGET_DEX_DEPENDENCIES) \ |
| 85 | $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES) |
Brian Carlstrom | 1580379 | 2012-03-13 00:53:08 -0700 | [diff] [blame] | 86 | |
Alex Light | 7b497ee | 2017-05-25 09:54:15 -0700 | [diff] [blame] | 87 | ifeq ($(ART_BUILD_TARGET_DEBUG),true) |
| 88 | ART_TARGET_DEPENDENCIES += $(ART_TARGET_SHARED_LIBRARY_DEBUG_DEPENDENCIES) |
| 89 | endif |
| 90 | |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 91 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 92 | # test rules |
Brian Carlstrom | 1580379 | 2012-03-13 00:53:08 -0700 | [diff] [blame] | 93 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 94 | # All the dependencies that must be built ahead of sync-ing them onto the target device. |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 95 | TEST_ART_TARGET_SYNC_DEPS := $(ADB_EXECUTABLE) |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 96 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 97 | include $(art_path)/build/Android.common_test.mk |
| 98 | include $(art_path)/build/Android.gtest.mk |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 99 | include $(art_path)/test/Android.run-test.mk |
Andreas Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 100 | |
Nicolas Geoffray | 375d4eb | 2018-10-12 15:23:56 +0100 | [diff] [blame] | 101 | TEST_ART_TARGET_SYNC_DEPS += $(ART_TEST_TARGET_GTEST_DEPENDENCIES) $(ART_TEST_TARGET_RUN_TEST_DEPENDENCIES) |
Nicolas Geoffray | 17b1dcb | 2018-10-12 15:09:42 +0100 | [diff] [blame] | 102 | |
Roland Levillain | 5798195 | 2018-08-03 14:06:21 +0100 | [diff] [blame] | 103 | # Make sure /system is writable on the device. |
Alex Light | 53fc75a | 2015-11-20 15:35:48 -0800 | [diff] [blame] | 104 | TEST_ART_ADB_ROOT_AND_REMOUNT := \ |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 105 | ($(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 Light | 53fc75a | 2015-11-20 15:35:48 -0800 | [diff] [blame] | 113 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 114 | # Sync test files to the target, depends upon all things that must be pushed to the target. |
| 115 | .PHONY: test-art-target-sync |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 116 | # 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 Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 120 | ifneq ($(ART_TEST_NO_SYNC),true) |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 121 | # Sync system and data partitions. |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 122 | ifeq ($(ART_TEST_ANDROID_ROOT),) |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 123 | ifeq ($(ART_TEST_CHROOT),) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 124 | test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS) |
Alex Light | 53fc75a | 2015-11-20 15:35:48 -0800 | [diff] [blame] | 125 | $(TEST_ART_ADB_ROOT_AND_REMOUNT) |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 126 | $(ADB) sync system && $(ADB) sync data |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 127 | else |
Roland Levillain | 5798195 | 2018-08-03 14:06:21 +0100 | [diff] [blame] | 128 | # 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 Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 131 | test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS) |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 132 | $(ADB) wait-for-device |
| 133 | $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)/ |
| 134 | $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/ |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 135 | endif |
| 136 | else |
| 137 | test-art-target-sync: $(TEST_ART_TARGET_SYNC_DEPS) |
| 138 | $(TEST_ART_ADB_ROOT_AND_REMOUNT) |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 139 | $(ADB) wait-for-device |
| 140 | $(ADB) push $(PRODUCT_OUT)/system $(ART_TEST_CHROOT)$(ART_TEST_ANDROID_ROOT) |
Roland Levillain | 76cfe61 | 2017-10-30 13:14:28 +0000 | [diff] [blame] | 141 | # 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 Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 144 | $(ADB) push $(PRODUCT_OUT)/data $(ART_TEST_CHROOT)/ |
Nicolas Geoffray | c8f23fc | 2014-10-28 17:59:47 +0000 | [diff] [blame] | 145 | endif |
Nicolas Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 146 | endif |
Brian Carlstrom | 934486c | 2011-07-12 23:42:50 -0700 | [diff] [blame] | 147 | |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 148 | # "mm test-art" to build and run all tests on host and device |
| 149 | .PHONY: test-art |
| 150 | test-art: test-art-host test-art-target |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 151 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 152 | |
Brian Carlstrom | 47a0d5a | 2011-10-12 21:20:05 -0700 | [diff] [blame] | 153 | .PHONY: test-art-gtest |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 154 | test-art-gtest: test-art-host-gtest test-art-target-gtest |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 155 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Elliott Hughes | 2cae5a2 | 2011-08-14 14:27:25 -0700 | [diff] [blame] | 156 | |
Brian Carlstrom | 08981ab | 2012-05-25 18:40:15 -0700 | [diff] [blame] | 157 | .PHONY: test-art-run-test |
Brian Carlstrom | dbaa93a | 2013-07-31 15:13:10 -0700 | [diff] [blame] | 158 | test-art-run-test: test-art-host-run-test test-art-target-run-test |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 159 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | 08981ab | 2012-05-25 18:40:15 -0700 | [diff] [blame] | 160 | |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 161 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 162 | # host test rules |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 163 | |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 164 | VIXL_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 Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 167 | ifneq ($(HOST_PREFER_32_BIT),true) |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 168 | ifeq ($(ONE_SHOT_MAKEFILE),) |
| 169 | VIXL_TEST_DEPENDENCY := run-vixl-tests |
Andreas Gampe | 3c03357 | 2014-05-13 08:41:48 -0700 | [diff] [blame] | 170 | endif |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 171 | endif |
| 172 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 173 | .PHONY: test-art-host-vixl |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 174 | test-art-host-vixl: $(VIXL_TEST_DEPENDENCY) |
Andreas Gampe | 3c03357 | 2014-05-13 08:41:48 -0700 | [diff] [blame] | 175 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 176 | # "mm test-art-host" to build and run all host tests. |
Brian Carlstrom | 934486c | 2011-07-12 23:42:50 -0700 | [diff] [blame] | 177 | .PHONY: test-art-host |
Aart Bik | a59032f | 2015-07-06 17:45:30 -0700 | [diff] [blame] | 178 | test-art-host: test-art-host-gtest test-art-host-run-test \ |
| 179 | test-art-host-vixl test-art-host-dexdump |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 180 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | 59848da | 2011-07-23 20:35:19 -0700 | [diff] [blame] | 181 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 182 | # All host tests that run solely with the default compiler. |
| 183 | .PHONY: test-art-host-default |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 184 | test-art-host-default: test-art-host-run-test-default |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 185 | $(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 Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 189 | test-art-host-optimizing: test-art-host-run-test-optimizing |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 190 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 191 | |
| 192 | # All host tests that run solely on the interpreter. |
Ian Rogers | 85d9ba6 | 2013-01-16 22:32:12 -0800 | [diff] [blame] | 193 | .PHONY: test-art-host-interpreter |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 194 | test-art-host-interpreter: test-art-host-run-test-interpreter |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 195 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Ian Rogers | 85d9ba6 | 2013-01-16 22:32:12 -0800 | [diff] [blame] | 196 | |
Mathieu Chartier | 3fc1b12 | 2015-02-26 10:58:08 -0800 | [diff] [blame] | 197 | # All host tests that run solely on the jit. |
| 198 | .PHONY: test-art-host-jit |
| 199 | test-art-host-jit: test-art-host-run-test-jit |
| 200 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 201 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 202 | # Primary host architecture variants: |
| 203 | .PHONY: test-art-host$(ART_PHONY_TEST_HOST_SUFFIX) |
| 204 | test-art-host$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(ART_PHONY_TEST_HOST_SUFFIX) \ |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 205 | test-art-host-run-test$(ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 206 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | b0aa9d3 | 2012-04-07 23:12:22 -0700 | [diff] [blame] | 207 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 208 | .PHONY: test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 209 | test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-default$(ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 210 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Elliott Hughes | 2cae5a2 | 2011-08-14 14:27:25 -0700 | [diff] [blame] | 211 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 212 | .PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 213 | test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-optimizing$(ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 214 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 215 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 216 | .PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 217 | test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 218 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | dbaa93a | 2013-07-31 15:13:10 -0700 | [diff] [blame] | 219 | |
Mathieu Chartier | 3fc1b12 | 2015-02-26 10:58:08 -0800 | [diff] [blame] | 220 | .PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX) |
| 221 | test-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 Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 224 | # Secondary host architecture variants: |
| 225 | ifneq ($(HOST_PREFER_32_BIT),true) |
| 226 | .PHONY: test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
| 227 | test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-gtest$(2ND_ART_PHONY_TEST_HOST_SUFFIX) \ |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 228 | test-art-host-run-test$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 229 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | dbaa93a | 2013-07-31 15:13:10 -0700 | [diff] [blame] | 230 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 231 | .PHONY: test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 232 | test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 233 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Elliott Hughes | 5511f21 | 2011-08-12 18:07:45 -0700 | [diff] [blame] | 234 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 235 | .PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 236 | test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 237 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Nicolas Geoffray | 3a50522 | 2014-05-26 16:40:55 +0100 | [diff] [blame] | 238 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 239 | .PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 240 | test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 241 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Mathieu Chartier | 3fc1b12 | 2015-02-26 10:58:08 -0800 | [diff] [blame] | 242 | |
| 243 | .PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
| 244 | test-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 Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 246 | endif |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 247 | |
Aart Bik | 3e40f4a | 2015-07-07 17:09:41 -0700 | [diff] [blame] | 248 | # Dexdump/list regression test. |
Aart Bik | a59032f | 2015-07-06 17:45:30 -0700 | [diff] [blame] | 249 | .PHONY: test-art-host-dexdump |
Aart Bik | b1b45be | 2015-08-28 11:09:29 -0700 | [diff] [blame] | 250 | test-art-host-dexdump: $(addprefix $(HOST_OUT_EXECUTABLES)/, dexdump2 dexlist) |
Ying Wang | 882a4f3 | 2015-07-08 14:09:10 -0700 | [diff] [blame] | 251 | ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests |
Aart Bik | a59032f | 2015-07-06 17:45:30 -0700 | [diff] [blame] | 252 | |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 253 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 254 | # target test rules |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 255 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 256 | # "mm test-art-target" to build and run all target tests. |
| 257 | .PHONY: test-art-target |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 258 | test-art-target: test-art-target-gtest test-art-target-run-test |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 259 | $(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 Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 263 | test-art-target-default: test-art-target-run-test-default |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 264 | $(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 Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 268 | test-art-target-optimizing: test-art-target-run-test-optimizing |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 269 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 270 | |
| 271 | # All target tests that run solely on the interpreter. |
| 272 | .PHONY: test-art-target-interpreter |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 273 | test-art-target-interpreter: test-art-target-run-test-interpreter |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 274 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 275 | |
Mathieu Chartier | 721f3a8 | 2015-02-27 10:39:48 -0800 | [diff] [blame] | 276 | # All target tests that run solely on the jit. |
| 277 | .PHONY: test-art-target-jit |
| 278 | test-art-target-jit: test-art-target-run-test-jit |
| 279 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 280 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 281 | # Primary target architecture variants: |
| 282 | .PHONY: test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX) |
| 283 | test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(ART_PHONY_TEST_TARGET_SUFFIX) \ |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 284 | test-art-target-run-test$(ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 285 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 286 | |
| 287 | .PHONY: test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 288 | test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-default$(ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 289 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 290 | |
| 291 | .PHONY: test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 292 | test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 293 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 294 | |
| 295 | .PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 296 | test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 297 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 298 | |
Mathieu Chartier | 721f3a8 | 2015-02-27 10:39:48 -0800 | [diff] [blame] | 299 | .PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX) |
| 300 | test-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 Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 303 | # Secondary target architecture variants: |
Dan Willemsen | 5d2dbf8 | 2018-04-11 12:31:11 -0700 | [diff] [blame] | 304 | ifdef 2ND_ART_PHONY_TEST_TARGET_SUFFIX |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 305 | .PHONY: test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
| 306 | test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-gtest$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) \ |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 307 | test-art-target-run-test$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 308 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 309 | |
| 310 | .PHONY: test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 311 | test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 312 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 313 | |
| 314 | .PHONY: test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 315 | test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 316 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 317 | |
| 318 | .PHONY: test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 319 | test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 320 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Mathieu Chartier | 721f3a8 | 2015-02-27 10:39:48 -0800 | [diff] [blame] | 321 | |
| 322 | .PHONY: test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
| 323 | test-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 Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 325 | endif |
| 326 | |
Dan Willemsen | cd8a057 | 2016-09-16 17:11:36 -0700 | [diff] [blame] | 327 | |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 328 | ####################### |
| 329 | # Fake packages for ART |
| 330 | |
| 331 | # The art-runtime package depends on the core ART libraries and binaries. It exists so we can |
| 332 | # manipulate the set of things shipped, e.g., add debug versions and so on. |
| 333 | |
| 334 | include $(CLEAR_VARS) |
| 335 | LOCAL_MODULE := art-runtime |
| 336 | |
| 337 | # Base requirements. |
| 338 | LOCAL_REQUIRED_MODULES := \ |
| 339 | dalvikvm \ |
| 340 | dex2oat \ |
| 341 | dexoptanalyzer \ |
| 342 | libart \ |
| 343 | libart-compiler \ |
| 344 | libopenjdkjvm \ |
| 345 | libopenjdkjvmti \ |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 346 | profman \ |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 347 | libadbconnection \ |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 348 | |
| 349 | # For nosy apps, we provide a fake library that avoids namespace issues and gives some warnings. |
| 350 | LOCAL_REQUIRED_MODULES += libart_fake |
| 351 | |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 352 | # Potentially add in debug variants: |
| 353 | # |
| 354 | # * We will never add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = false. |
| 355 | # * We will always add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = true. |
| 356 | # * Otherwise, we will add them by default to userdebug and eng builds. |
Andreas Gampe | 5ed27bc | 2017-07-06 15:43:12 -0700 | [diff] [blame] | 357 | art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD) |
| 358 | ifneq (false,$(art_target_include_debug_build)) |
| 359 | ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT))) |
| 360 | art_target_include_debug_build := true |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 361 | endif |
Andreas Gampe | 5ed27bc | 2017-07-06 15:43:12 -0700 | [diff] [blame] | 362 | ifeq (true,$(art_target_include_debug_build)) |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 363 | LOCAL_REQUIRED_MODULES += \ |
Andreas Gampe | 3d14d2b | 2017-07-18 08:36:16 -0700 | [diff] [blame] | 364 | dex2oatd \ |
| 365 | dexoptanalyzerd \ |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 366 | libartd \ |
| 367 | libartd-compiler \ |
Andreas Gampe | b8c7f1a | 2017-07-12 12:59:50 -0700 | [diff] [blame] | 368 | libopenjdkd \ |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 369 | libopenjdkjvmd \ |
| 370 | libopenjdkjvmtid \ |
Andreas Gampe | 3d14d2b | 2017-07-18 08:36:16 -0700 | [diff] [blame] | 371 | profmand \ |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 372 | libadbconnectiond \ |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 373 | |
| 374 | endif |
| 375 | endif |
| 376 | |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 377 | include $(BUILD_PHONY_PACKAGE) |
| 378 | |
| 379 | # The art-tools package depends on helpers and tools that are useful for developers and on-device |
| 380 | # investigations. |
| 381 | |
| 382 | include $(CLEAR_VARS) |
| 383 | LOCAL_MODULE := art-tools |
| 384 | LOCAL_REQUIRED_MODULES := \ |
| 385 | ahat \ |
| 386 | dexdiag \ |
| 387 | dexdump \ |
| 388 | dexlist \ |
| 389 | hprof-conv \ |
| 390 | oatdump \ |
| 391 | |
| 392 | include $(BUILD_PHONY_PACKAGE) |
| 393 | |
Andreas Gampe | 10edbb1 | 2016-01-06 17:59:49 -0800 | [diff] [blame] | 394 | #################################################################################################### |
| 395 | # Fake packages to ensure generation of libopenjdkd when one builds with mm/mmm/mmma. |
| 396 | # |
| 397 | # The library is required for starting a runtime in debug mode, but libartd does not depend on it |
| 398 | # (dependency cycle otherwise). |
| 399 | # |
| 400 | # Note: * As the package is phony to create a dependency the package name is irrelevant. |
| 401 | # * We make MULTILIB explicit to "both," just to state here that we want both libraries on |
| 402 | # 64-bit systems, even if it is the default. |
| 403 | |
| 404 | # ART on the host. |
| 405 | ifeq ($(ART_BUILD_HOST_DEBUG),true) |
| 406 | include $(CLEAR_VARS) |
| 407 | LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency |
| 408 | LOCAL_MULTILIB := both |
| 409 | LOCAL_REQUIRED_MODULES := libopenjdkd |
| 410 | LOCAL_IS_HOST_MODULE := true |
| 411 | include $(BUILD_PHONY_PACKAGE) |
| 412 | endif |
| 413 | |
| 414 | # ART on the target. |
| 415 | ifeq ($(ART_BUILD_TARGET_DEBUG),true) |
| 416 | include $(CLEAR_VARS) |
| 417 | LOCAL_MODULE := art-libartd-libopenjdkd-target-dependency |
| 418 | LOCAL_MULTILIB := both |
| 419 | LOCAL_REQUIRED_MODULES := libopenjdkd |
| 420 | include $(BUILD_PHONY_PACKAGE) |
| 421 | endif |
| 422 | |
Nicolas Geoffray | ab4825d | 2018-02-05 16:12:52 +0000 | [diff] [blame] | 423 | # Create dummy hidden API lists which are normally generated by the framework |
| 424 | # but which we do not have in the master-art manifest. |
| 425 | # We need to execute this now to ensure Makefile rules depending on these files can |
| 426 | # be constructed. |
| 427 | define build-art-hiddenapi |
| 428 | $(shell if [ ! -d frameworks/base ]; then \ |
| 429 | mkdir -p ${TARGET_OUT_COMMON_INTERMEDIATES}/PACKAGING; \ |
Nicolas Geoffray | 6c2cfb5 | 2018-09-13 14:16:24 +0100 | [diff] [blame] | 430 | touch ${TARGET_OUT_COMMON_INTERMEDIATES}/PACKAGING/hiddenapi-{whitelist,blacklist,dark-greylist,light-greylist}.txt; \ |
Nicolas Geoffray | ab4825d | 2018-02-05 16:12:52 +0000 | [diff] [blame] | 431 | fi;) |
| 432 | endef |
| 433 | |
| 434 | $(eval $(call build-art-hiddenapi)) |
| 435 | |
Brian Carlstrom | 76aa0c0 | 2011-10-11 15:29:43 -0700 | [diff] [blame] | 436 | ######################################################################## |
Brian Carlstrom | fa50baa | 2013-08-02 01:00:27 -0700 | [diff] [blame] | 437 | # "m build-art" for quick minimal build |
| 438 | .PHONY: build-art |
| 439 | build-art: build-art-host build-art-target |
| 440 | |
| 441 | .PHONY: build-art-host |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 442 | build-art-host: $(HOST_OUT_EXECUTABLES)/art $(ART_HOST_DEPENDENCIES) $(HOST_CORE_IMG_OUTS) |
Brian Carlstrom | fa50baa | 2013-08-02 01:00:27 -0700 | [diff] [blame] | 443 | |
| 444 | .PHONY: build-art-target |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 445 | build-art-target: $(TARGET_OUT_EXECUTABLES)/art $(ART_TARGET_DEPENDENCIES) $(TARGET_CORE_IMG_OUTS) |
Nicolas Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 446 | |
| 447 | ######################################################################## |
Nicolas Geoffray | 5213b6c | 2017-08-14 13:32:15 +0100 | [diff] [blame] | 448 | # Phony target for only building what go/lem requires for pushing ART on /data. |
Nicolas Geoffray | ab4825d | 2018-02-05 16:12:52 +0000 | [diff] [blame] | 449 | |
Nicolas Geoffray | c2a58f3 | 2016-09-16 12:28:12 +0100 | [diff] [blame] | 450 | .PHONY: build-art-target-golem |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 451 | # Also include libartbenchmark, we always include it when running golem. |
Nicolas Geoffray | e137a21 | 2016-12-08 13:49:54 +0000 | [diff] [blame] | 452 | # libstdc++ is needed when building for ART_TARGET_LINUX. |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 453 | ART_TARGET_SHARED_LIBRARY_BENCHMARK := $(TARGET_OUT_SHARED_LIBRARIES)/libartbenchmark.so |
Vladimir Marko | a497a39 | 2018-09-26 10:52:50 +0100 | [diff] [blame] | 454 | build-art-target-golem: dex2oat dalvikvm linker libstdc++ \ |
Nicolas Geoffray | 5121691 | 2017-03-16 12:39:50 +0000 | [diff] [blame] | 455 | $(TARGET_OUT_EXECUTABLES)/art \ |
Nicolas Geoffray | c2a58f3 | 2016-09-16 12:28:12 +0100 | [diff] [blame] | 456 | $(TARGET_OUT)/etc/public.libraries.txt \ |
| 457 | $(ART_TARGET_DEX_DEPENDENCIES) \ |
| 458 | $(ART_TARGET_SHARED_LIBRARY_DEPENDENCIES) \ |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 459 | $(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \ |
Nicolas Geoffray | c2a58f3 | 2016-09-16 12:28:12 +0100 | [diff] [blame] | 460 | $(TARGET_CORE_IMG_OUT_BASE).art \ |
| 461 | $(TARGET_CORE_IMG_OUT_BASE)-interpreter.art |
Nicolas Geoffray | 83b7419 | 2018-04-27 10:58:45 +0100 | [diff] [blame] | 462 | # remove debug libraries from public.libraries.txt because golem builds |
Nicolas Geoffray | 91aac09 | 2018-02-16 10:09:54 +0000 | [diff] [blame] | 463 | # won't have it. |
Nicolas Geoffray | 3bf9429 | 2018-02-04 14:48:34 +0000 | [diff] [blame] | 464 | sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | 91aac09 | 2018-02-16 10:09:54 +0000 | [diff] [blame] | 465 | sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | 83b7419 | 2018-04-27 10:58:45 +0100 | [diff] [blame] | 466 | sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | 763a14a | 2018-05-21 13:16:51 +0100 | [diff] [blame] | 467 | sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | c2a58f3 | 2016-09-16 12:28:12 +0100 | [diff] [blame] | 468 | |
| 469 | ######################################################################## |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 470 | # Phony target for building what go/lem requires on host. |
| 471 | .PHONY: build-art-host-golem |
| 472 | # Also include libartbenchmark, we always include it when running golem. |
| 473 | ART_HOST_SHARED_LIBRARY_BENCHMARK := $(ART_HOST_OUT_SHARED_LIBRARIES)/libartbenchmark.so |
| 474 | build-art-host-golem: build-art-host \ |
| 475 | $(ART_HOST_SHARED_LIBRARY_BENCHMARK) |
| 476 | |
| 477 | ######################################################################## |
Nicolas Geoffray | 5213b6c | 2017-08-14 13:32:15 +0100 | [diff] [blame] | 478 | # Phony target for building what go/lem requires for syncing /system to target. |
| 479 | .PHONY: build-art-unbundled-golem |
Nicolas Geoffray | cf053a5 | 2017-11-15 15:10:09 +0000 | [diff] [blame] | 480 | build-art-unbundled-golem: art-runtime linker oatdump $(TARGET_CORE_JARS) crash_dump |
Nicolas Geoffray | 5213b6c | 2017-08-14 13:32:15 +0100 | [diff] [blame] | 481 | |
| 482 | ######################################################################## |
Nicolas Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 483 | # Rules for building all dependencies for tests. |
| 484 | |
| 485 | .PHONY: build-art-host-tests |
Yohann Roussel | 05b9125 | 2015-12-09 12:02:46 +0100 | [diff] [blame] | 486 | build-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 Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 487 | |
| 488 | .PHONY: build-art-target-tests |
Nicolas Geoffray | 375d4eb | 2018-10-12 15:23:56 +0100 | [diff] [blame] | 489 | build-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 Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 490 | |
| 491 | ######################################################################## |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 492 | # targets to switch back and forth from libdvm to libart |
| 493 | |
| 494 | .PHONY: use-art |
| 495 | use-art: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 496 | $(ADB) root |
| 497 | $(ADB) wait-for-device shell stop |
| 498 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 499 | $(ADB) shell start |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 500 | |
| 501 | .PHONY: use-artd |
| 502 | use-artd: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 503 | $(ADB) root |
| 504 | $(ADB) wait-for-device shell stop |
| 505 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so |
| 506 | $(ADB) shell start |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 507 | |
| 508 | .PHONY: use-dalvik |
| 509 | use-dalvik: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 510 | $(ADB) root |
| 511 | $(ADB) wait-for-device shell stop |
| 512 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so |
| 513 | $(ADB) shell start |
Brian Carlstrom | 1e895cd | 2014-03-06 23:17:15 -0800 | [diff] [blame] | 514 | |
| 515 | .PHONY: use-art-full |
| 516 | use-art-full: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 517 | $(ADB) root |
| 518 | $(ADB) wait-for-device shell stop |
| 519 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 520 | $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\" |
| 521 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\" |
| 522 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 523 | $(ADB) shell setprop dalvik.vm.usejit false |
| 524 | $(ADB) shell start |
Brian Carlstrom | 1e895cd | 2014-03-06 23:17:15 -0800 | [diff] [blame] | 525 | |
Hiroshi Yamauchi | cb9bccd | 2014-05-19 12:29:36 -0700 | [diff] [blame] | 526 | .PHONY: use-artd-full |
| 527 | use-artd-full: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 528 | $(ADB) root |
| 529 | $(ADB) wait-for-device shell stop |
| 530 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 531 | $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\" |
| 532 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\" |
| 533 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so |
| 534 | $(ADB) shell setprop dalvik.vm.usejit false |
| 535 | $(ADB) shell start |
Hiroshi Yamauchi | cb9bccd | 2014-05-19 12:29:36 -0700 | [diff] [blame] | 536 | |
Mathieu Chartier | d71795b | 2015-07-14 16:59:23 -0700 | [diff] [blame] | 537 | .PHONY: use-art-jit |
| 538 | use-art-jit: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 539 | $(ADB) root |
| 540 | $(ADB) wait-for-device shell stop |
| 541 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 542 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-at-runtime" |
| 543 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime" |
| 544 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 545 | $(ADB) shell setprop dalvik.vm.usejit true |
| 546 | $(ADB) shell start |
Brian Carlstrom | 1e895cd | 2014-03-06 23:17:15 -0800 | [diff] [blame] | 547 | |
| 548 | .PHONY: use-art-interpret-only |
| 549 | use-art-interpret-only: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 550 | $(ADB) root |
| 551 | $(ADB) wait-for-device shell stop |
| 552 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 553 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only" |
| 554 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only" |
| 555 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 556 | $(ADB) shell setprop dalvik.vm.usejit false |
| 557 | $(ADB) shell start |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 558 | |
Sebastien Hertz | 15582b9 | 2014-07-04 10:53:22 +0200 | [diff] [blame] | 559 | .PHONY: use-artd-interpret-only |
| 560 | use-artd-interpret-only: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 561 | $(ADB) root |
| 562 | $(ADB) wait-for-device shell stop |
| 563 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 564 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only" |
| 565 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only" |
| 566 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so |
| 567 | $(ADB) shell setprop dalvik.vm.usejit false |
| 568 | $(ADB) shell start |
Sebastien Hertz | 15582b9 | 2014-07-04 10:53:22 +0200 | [diff] [blame] | 569 | |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 570 | .PHONY: use-art-verify-none |
| 571 | use-art-verify-none: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 572 | $(ADB) root |
| 573 | $(ADB) wait-for-device shell stop |
| 574 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 575 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-none" |
| 576 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-none" |
| 577 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 578 | $(ADB) shell setprop dalvik.vm.usejit false |
| 579 | $(ADB) shell start |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 580 | |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 581 | ######################################################################## |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 582 | |
Ian Rogers | 8f0bbd2 | 2014-09-26 15:31:20 -0700 | [diff] [blame] | 583 | # Clear locally used variables. |
Nicolas Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 584 | TEST_ART_TARGET_SYNC_DEPS := |
Narayan Kamath | 0095d88 | 2016-02-12 16:09:58 +0000 | [diff] [blame] | 585 | |
Andreas Gampe | fad48e7 | 2016-04-11 11:57:18 -0700 | [diff] [blame] | 586 | # Helper target that depends on boot image creation. |
| 587 | # |
| 588 | # Can be used, for example, to dump initialization failures: |
| 589 | # m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt |
| 590 | .PHONY: art-boot-image |
| 591 | art-boot-image: $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) |
Calin Juravle | f01de11 | 2016-10-24 12:40:19 +0100 | [diff] [blame] | 592 | |
| 593 | .PHONY: art-job-images |
| 594 | art-job-images: \ |
| 595 | $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \ |
| 596 | $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \ |
| 597 | $(HOST_OUT_EXECUTABLES)/dex2oats \ |
| 598 | $(HOST_OUT_EXECUTABLES)/dex2oatds \ |
| 599 | $(HOST_OUT_EXECUTABLES)/profman |