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 |
| 26 | |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 27 | .PHONY: clean-oat |
| 28 | clean-oat: clean-oat-host clean-oat-target |
| 29 | |
| 30 | .PHONY: clean-oat-host |
| 31 | clean-oat-host: |
Vladimir Marko | 589bf90 | 2019-12-12 13:19:18 +0000 | [diff] [blame] | 32 | find $(OUT_DIR) '(' -name '*.oat' -o -name '*.odex' -o -name '*.art' -o -name '*.vdex' ')' -a -type f | xargs rm -f |
Dan Willemsen | 0104606 | 2019-01-02 13:39:29 -0800 | [diff] [blame] | 33 | rm -rf $(TMPDIR)/*/test-*/dalvik-cache/* |
Andreas Gampe | 5a79fde | 2014-08-06 13:12:26 -0700 | [diff] [blame] | 34 | rm -rf $(TMPDIR)/android-data/dalvik-cache/* |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 35 | |
| 36 | .PHONY: clean-oat-target |
| 37 | clean-oat-target: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 38 | $(ADB) root |
| 39 | $(ADB) wait-for-device remount |
| 40 | $(ADB) shell rm -rf $(ART_TARGET_NATIVETEST_DIR) |
| 41 | $(ADB) shell rm -rf $(ART_TARGET_TEST_DIR) |
| 42 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/*/* |
Nicolas Geoffray | a144c27 | 2019-02-20 12:03:53 +0000 | [diff] [blame] | 43 | $(ADB) shell rm -rf $(ART_DEXPREOPT_BOOT_JAR_DIR)/$(DEX2OAT_TARGET_ARCH) |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 44 | $(ADB) shell rm -rf system/app/$(DEX2OAT_TARGET_ARCH) |
Brian Carlstrom | f662e06 | 2014-05-19 16:09:42 -0700 | [diff] [blame] | 45 | ifdef TARGET_2ND_ARCH |
Nicolas Geoffray | a144c27 | 2019-02-20 12:03:53 +0000 | [diff] [blame] | 46 | $(ADB) shell rm -rf $(ART_DEXPREOPT_BOOT_JAR_DIR)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH) |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 47 | $(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] | 48 | endif |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 49 | $(ADB) shell rm -rf data/run-test/test-*/dalvik-cache/* |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 50 | |
Brian Carlstrom | 62e3ee3 | 2012-06-18 14:58:55 -0700 | [diff] [blame] | 51 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 52 | # cpplint rules to style check art source files |
| 53 | |
| 54 | include $(art_path)/build/Android.cpplint.mk |
| 55 | |
| 56 | ######################################################################## |
| 57 | # product rules |
| 58 | |
Colin Cross | 35235cb | 2016-09-09 11:19:32 -0700 | [diff] [blame] | 59 | include $(art_path)/oatdump/Android.mk |
Richard Uhler | b730b78 | 2015-07-15 16:01:58 -0700 | [diff] [blame] | 60 | include $(art_path)/tools/ahat/Android.mk |
Stephen Kyle | 959ffdf | 2014-11-28 14:27:44 +0000 | [diff] [blame] | 61 | include $(art_path)/tools/dexfuzz/Android.mk |
Nicolas Geoffray | d1ef717 | 2018-03-28 09:16:31 +0100 | [diff] [blame] | 62 | include $(art_path)/tools/veridex/Android.mk |
Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 63 | |
Brian Carlstrom | 532714a | 2014-06-25 02:15:31 -0700 | [diff] [blame] | 64 | ART_HOST_DEPENDENCIES := \ |
Richard Uhler | c5a0004 | 2016-07-01 13:10:56 -0700 | [diff] [blame] | 65 | $(ART_HOST_EXECUTABLES) \ |
| 66 | $(ART_HOST_DEX_DEPENDENCIES) \ |
| 67 | $(ART_HOST_SHARED_LIBRARY_DEPENDENCIES) |
Alex Light | 7b497ee | 2017-05-25 09:54:15 -0700 | [diff] [blame] | 68 | |
| 69 | ifeq ($(ART_BUILD_HOST_DEBUG),true) |
| 70 | ART_HOST_DEPENDENCIES += $(ART_HOST_SHARED_LIBRARY_DEBUG_DEPENDENCIES) |
| 71 | endif |
| 72 | |
Brian Carlstrom | 532714a | 2014-06-25 02:15:31 -0700 | [diff] [blame] | 73 | ART_TARGET_DEPENDENCIES := \ |
Roland Levillain | 72f6774 | 2019-03-06 15:48:08 +0000 | [diff] [blame] | 74 | $(ART_TARGET_DEX_DEPENDENCIES) |
Alex Light | 7b497ee | 2017-05-25 09:54:15 -0700 | [diff] [blame] | 75 | |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 76 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 77 | # test rules |
Brian Carlstrom | 1580379 | 2012-03-13 00:53:08 -0700 | [diff] [blame] | 78 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 79 | # 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] | 80 | TEST_ART_TARGET_SYNC_DEPS := $(ADB_EXECUTABLE) |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 81 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 82 | include $(art_path)/build/Android.common_test.mk |
| 83 | include $(art_path)/build/Android.gtest.mk |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 84 | include $(art_path)/test/Android.run-test.mk |
Andreas Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 85 | |
Nicolas Geoffray | 375d4eb | 2018-10-12 15:23:56 +0100 | [diff] [blame] | 86 | 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] | 87 | |
Roland Levillain | 5798195 | 2018-08-03 14:06:21 +0100 | [diff] [blame] | 88 | # Make sure /system is writable on the device. |
Alex Light | 53fc75a | 2015-11-20 15:35:48 -0800 | [diff] [blame] | 89 | TEST_ART_ADB_ROOT_AND_REMOUNT := \ |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 90 | ($(ADB) root && \ |
| 91 | $(ADB) wait-for-device remount && \ |
| 92 | (($(ADB) shell touch /system/testfile && \ |
| 93 | ($(ADB) shell rm /system/testfile || true)) || \ |
| 94 | ($(ADB) disable-verity && \ |
| 95 | $(ADB) reboot && \ |
| 96 | $(ADB) wait-for-device root && \ |
| 97 | $(ADB) wait-for-device remount))) |
Alex Light | 53fc75a | 2015-11-20 15:35:48 -0800 | [diff] [blame] | 98 | |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 99 | # "mm test-art" to build and run all tests on host and device |
| 100 | .PHONY: test-art |
| 101 | test-art: test-art-host test-art-target |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 102 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 103 | |
Brian Carlstrom | 47a0d5a | 2011-10-12 21:20:05 -0700 | [diff] [blame] | 104 | .PHONY: test-art-gtest |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 105 | test-art-gtest: test-art-host-gtest test-art-target-gtest |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 106 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Elliott Hughes | 2cae5a2 | 2011-08-14 14:27:25 -0700 | [diff] [blame] | 107 | |
Brian Carlstrom | 08981ab | 2012-05-25 18:40:15 -0700 | [diff] [blame] | 108 | .PHONY: test-art-run-test |
Brian Carlstrom | dbaa93a | 2013-07-31 15:13:10 -0700 | [diff] [blame] | 109 | 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] | 110 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | 08981ab | 2012-05-25 18:40:15 -0700 | [diff] [blame] | 111 | |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 112 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 113 | # host test rules |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 114 | |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 115 | VIXL_TEST_DEPENDENCY := |
| 116 | # We can only run the vixl tests on 64-bit hosts (vixl testing issue) when its a |
| 117 | # top-level build (to declare the vixl test rule). |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 118 | ifneq ($(HOST_PREFER_32_BIT),true) |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 119 | ifeq ($(ONE_SHOT_MAKEFILE),) |
| 120 | VIXL_TEST_DEPENDENCY := run-vixl-tests |
Andreas Gampe | 3c03357 | 2014-05-13 08:41:48 -0700 | [diff] [blame] | 121 | endif |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 122 | endif |
| 123 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 124 | .PHONY: test-art-host-vixl |
Ian Rogers | 7a4c1c1 | 2014-05-18 13:03:52 -0700 | [diff] [blame] | 125 | test-art-host-vixl: $(VIXL_TEST_DEPENDENCY) |
Andreas Gampe | 3c03357 | 2014-05-13 08:41:48 -0700 | [diff] [blame] | 126 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 127 | # "mm test-art-host" to build and run all host tests. |
Brian Carlstrom | 934486c | 2011-07-12 23:42:50 -0700 | [diff] [blame] | 128 | .PHONY: test-art-host |
Aart Bik | a59032f | 2015-07-06 17:45:30 -0700 | [diff] [blame] | 129 | test-art-host: test-art-host-gtest test-art-host-run-test \ |
| 130 | test-art-host-vixl test-art-host-dexdump |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 131 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | 59848da | 2011-07-23 20:35:19 -0700 | [diff] [blame] | 132 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 133 | # All host tests that run solely with the default compiler. |
| 134 | .PHONY: test-art-host-default |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 135 | test-art-host-default: test-art-host-run-test-default |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 136 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 137 | |
| 138 | # All host tests that run solely with the optimizing compiler. |
| 139 | .PHONY: test-art-host-optimizing |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 140 | test-art-host-optimizing: test-art-host-run-test-optimizing |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 141 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 142 | |
| 143 | # All host tests that run solely on the interpreter. |
Ian Rogers | 85d9ba6 | 2013-01-16 22:32:12 -0800 | [diff] [blame] | 144 | .PHONY: test-art-host-interpreter |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 145 | test-art-host-interpreter: test-art-host-run-test-interpreter |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 146 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Ian Rogers | 85d9ba6 | 2013-01-16 22:32:12 -0800 | [diff] [blame] | 147 | |
Mathieu Chartier | 3fc1b12 | 2015-02-26 10:58:08 -0800 | [diff] [blame] | 148 | # All host tests that run solely on the jit. |
| 149 | .PHONY: test-art-host-jit |
| 150 | test-art-host-jit: test-art-host-run-test-jit |
| 151 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 152 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 153 | # Primary host architecture variants: |
| 154 | .PHONY: test-art-host$(ART_PHONY_TEST_HOST_SUFFIX) |
| 155 | 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] | 156 | test-art-host-run-test$(ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 157 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | b0aa9d3 | 2012-04-07 23:12:22 -0700 | [diff] [blame] | 158 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 159 | .PHONY: test-art-host-default$(ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 160 | 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] | 161 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Elliott Hughes | 2cae5a2 | 2011-08-14 14:27:25 -0700 | [diff] [blame] | 162 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 163 | .PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 164 | 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] | 165 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | b279337 | 2012-03-17 18:27:16 -0700 | [diff] [blame] | 166 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 167 | .PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 168 | 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] | 169 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | dbaa93a | 2013-07-31 15:13:10 -0700 | [diff] [blame] | 170 | |
Mathieu Chartier | 3fc1b12 | 2015-02-26 10:58:08 -0800 | [diff] [blame] | 171 | .PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX) |
| 172 | test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUFFIX) |
| 173 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 174 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 175 | # Secondary host architecture variants: |
| 176 | ifneq ($(HOST_PREFER_32_BIT),true) |
| 177 | .PHONY: test-art-host$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
| 178 | 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] | 179 | test-art-host-run-test$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 180 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Brian Carlstrom | dbaa93a | 2013-07-31 15:13:10 -0700 | [diff] [blame] | 181 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 182 | .PHONY: test-art-host-default$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 183 | 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] | 184 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Elliott Hughes | 5511f21 | 2011-08-12 18:07:45 -0700 | [diff] [blame] | 185 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 186 | .PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 187 | 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] | 188 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Nicolas Geoffray | 3a50522 | 2014-05-26 16:40:55 +0100 | [diff] [blame] | 189 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 190 | .PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 191 | 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] | 192 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Mathieu Chartier | 3fc1b12 | 2015-02-26 10:58:08 -0800 | [diff] [blame] | 193 | |
| 194 | .PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
| 195 | test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX) |
| 196 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Andreas Gampe | 2fe0792 | 2014-04-21 07:50:39 -0700 | [diff] [blame] | 197 | endif |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 198 | |
Aart Bik | 3e40f4a | 2015-07-07 17:09:41 -0700 | [diff] [blame] | 199 | # Dexdump/list regression test. |
Aart Bik | a59032f | 2015-07-06 17:45:30 -0700 | [diff] [blame] | 200 | .PHONY: test-art-host-dexdump |
David Sehr | 4f215d1 | 2019-04-03 09:28:21 -0700 | [diff] [blame] | 201 | test-art-host-dexdump: $(addprefix $(HOST_OUT_EXECUTABLES)/, dexdump dexlist) |
Ying Wang | 882a4f3 | 2015-07-08 14:09:10 -0700 | [diff] [blame] | 202 | ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests |
Aart Bik | a59032f | 2015-07-06 17:45:30 -0700 | [diff] [blame] | 203 | |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 204 | ######################################################################## |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 205 | # target test rules |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 206 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 207 | # "mm test-art-target" to build and run all target tests. |
| 208 | .PHONY: test-art-target |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 209 | test-art-target: test-art-target-gtest test-art-target-run-test |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 210 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 211 | |
| 212 | # All target tests that run solely with the default compiler. |
| 213 | .PHONY: test-art-target-default |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 214 | test-art-target-default: test-art-target-run-test-default |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 215 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 216 | |
| 217 | # All target tests that run solely with the optimizing compiler. |
| 218 | .PHONY: test-art-target-optimizing |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 219 | test-art-target-optimizing: test-art-target-run-test-optimizing |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 220 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 221 | |
| 222 | # All target tests that run solely on the interpreter. |
| 223 | .PHONY: test-art-target-interpreter |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 224 | test-art-target-interpreter: test-art-target-run-test-interpreter |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 225 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 226 | |
Mathieu Chartier | 721f3a8 | 2015-02-27 10:39:48 -0800 | [diff] [blame] | 227 | # All target tests that run solely on the jit. |
| 228 | .PHONY: test-art-target-jit |
| 229 | test-art-target-jit: test-art-target-run-test-jit |
| 230 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 231 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 232 | # Primary target architecture variants: |
| 233 | .PHONY: test-art-target$(ART_PHONY_TEST_TARGET_SUFFIX) |
| 234 | 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] | 235 | test-art-target-run-test$(ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 236 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 237 | |
| 238 | .PHONY: test-art-target-default$(ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 239 | 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] | 240 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 241 | |
| 242 | .PHONY: test-art-target-optimizing$(ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 243 | 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] | 244 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 245 | |
| 246 | .PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 247 | 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] | 248 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 249 | |
Mathieu Chartier | 721f3a8 | 2015-02-27 10:39:48 -0800 | [diff] [blame] | 250 | .PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX) |
| 251 | test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TARGET_SUFFIX) |
| 252 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 253 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 254 | # Secondary target architecture variants: |
Dan Willemsen | 5d2dbf8 | 2018-04-11 12:31:11 -0700 | [diff] [blame] | 255 | ifdef 2ND_ART_PHONY_TEST_TARGET_SUFFIX |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 256 | .PHONY: test-art-target$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
| 257 | 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] | 258 | test-art-target-run-test$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 259 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 260 | |
| 261 | .PHONY: test-art-target-default$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 262 | 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] | 263 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 264 | |
| 265 | .PHONY: test-art-target-optimizing$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 266 | 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] | 267 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
| 268 | |
| 269 | .PHONY: test-art-target-interpreter$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 270 | 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] | 271 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Mathieu Chartier | 721f3a8 | 2015-02-27 10:39:48 -0800 | [diff] [blame] | 272 | |
| 273 | .PHONY: test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
| 274 | test-art-target-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) |
| 275 | $(hide) $(call ART_TEST_PREREQ_FINISHED,$@) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 276 | endif |
| 277 | |
Yo Chiang | 04bc725 | 2020-08-05 19:06:10 +0800 | [diff] [blame] | 278 | ####################### |
| 279 | # Reset LOCAL_PATH because previous includes may override its value. |
| 280 | # Keep this after all "include $(art_path)/..." are done, and before any |
| 281 | # "include $(BUILD_...)". |
| 282 | LOCAL_PATH := $(art_path) |
Dan Willemsen | cd8a057 | 2016-09-16 17:11:36 -0700 | [diff] [blame] | 283 | |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 284 | ####################### |
Martin Stjernholm | 801f6a7 | 2020-10-12 15:58:43 +0100 | [diff] [blame] | 285 | # ART APEX autoselect |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 286 | |
| 287 | include $(CLEAR_VARS) |
Roland Levillain | e56607a | 2018-11-16 19:40:25 +0000 | [diff] [blame] | 288 | |
Martin Stjernholm | fb3a94b | 2019-07-05 22:27:36 +0100 | [diff] [blame] | 289 | # The ART APEX comes in three flavors: |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 290 | # - the release module (`com.android.art`), containing only "release" |
| 291 | # artifacts; |
Martin Stjernholm | fb3a94b | 2019-07-05 22:27:36 +0100 | [diff] [blame] | 292 | # - the debug module (`com.android.art.debug`), containing both |
Roland Levillain | f0b1de8 | 2019-07-02 19:25:58 +0100 | [diff] [blame] | 293 | # "release" and "debug" artifacts, as well as additional tools; |
Martin Stjernholm | fb3a94b | 2019-07-05 22:27:36 +0100 | [diff] [blame] | 294 | # - the testing module (`com.android.art.testing`), containing |
Roland Levillain | f0b1de8 | 2019-07-02 19:25:58 +0100 | [diff] [blame] | 295 | # both "release" and "debug" artifacts, as well as additional tools |
| 296 | # and ART gtests). |
Roland Levillain | e56607a | 2018-11-16 19:40:25 +0000 | [diff] [blame] | 297 | # |
Martin Stjernholm | 801f6a7 | 2020-10-12 15:58:43 +0100 | [diff] [blame] | 298 | # `com.android.art-autoselect` is an "alias" for either the release or the debug |
| 299 | # module. By default, "user" build variants contain the release module, while |
| 300 | # "userdebug" and "eng" build variants contain the debug module. However, if |
| 301 | # `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is defined, it overrides the previous |
| 302 | # logic: |
Roland Levillain | e56607a | 2018-11-16 19:40:25 +0000 | [diff] [blame] | 303 | # - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `false`, the |
| 304 | # build will include the release module (whatever the build |
| 305 | # variant); |
| 306 | # - if `PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD` is set to `true`, the |
| 307 | # build will include the debug module (whatever the build variant). |
| 308 | |
| 309 | art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD) |
| 310 | ifneq (false,$(art_target_include_debug_build)) |
| 311 | ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT))) |
| 312 | art_target_include_debug_build := true |
| 313 | endif |
| 314 | endif |
| 315 | ifeq (true,$(art_target_include_debug_build)) |
| 316 | # Module with both release and debug variants, as well as |
| 317 | # additional tools. |
Martin Stjernholm | 84e5bb9 | 2019-09-05 19:56:46 +0100 | [diff] [blame] | 318 | TARGET_ART_APEX := $(DEBUG_ART_APEX) |
Jiyong Park | 1410e9f | 2019-02-02 04:18:23 +0000 | [diff] [blame] | 319 | APEX_TEST_MODULE := art-check-debug-apex-gen-fakebin |
Roland Levillain | e56607a | 2018-11-16 19:40:25 +0000 | [diff] [blame] | 320 | else |
| 321 | # Release module (without debug variants nor tools). |
Martin Stjernholm | 84e5bb9 | 2019-09-05 19:56:46 +0100 | [diff] [blame] | 322 | TARGET_ART_APEX := $(RELEASE_ART_APEX) |
Jiyong Park | 1410e9f | 2019-02-02 04:18:23 +0000 | [diff] [blame] | 323 | APEX_TEST_MODULE := art-check-release-apex-gen-fakebin |
Roland Levillain | e56607a | 2018-11-16 19:40:25 +0000 | [diff] [blame] | 324 | endif |
| 325 | |
Martin Stjernholm | 801f6a7 | 2020-10-12 15:58:43 +0100 | [diff] [blame] | 326 | LOCAL_MODULE := com.android.art-autoselect |
Martin Stjernholm | 84e5bb9 | 2019-09-05 19:56:46 +0100 | [diff] [blame] | 327 | LOCAL_REQUIRED_MODULES := $(TARGET_ART_APEX) |
Roland Levillain | e56607a | 2018-11-16 19:40:25 +0000 | [diff] [blame] | 328 | |
| 329 | # Clear locally used variable. |
| 330 | art_target_include_debug_build := |
| 331 | |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 332 | include $(BUILD_PHONY_PACKAGE) |
| 333 | |
Dan Willemsen | b9a05b0 | 2019-04-02 16:13:14 -0700 | [diff] [blame] | 334 | include $(CLEAR_VARS) |
Martin Stjernholm | 801f6a7 | 2020-10-12 15:58:43 +0100 | [diff] [blame] | 335 | LOCAL_MODULE := com.android.art-autoselect |
Dan Willemsen | b9a05b0 | 2019-04-02 16:13:14 -0700 | [diff] [blame] | 336 | LOCAL_IS_HOST_MODULE := true |
| 337 | ifneq ($(HOST_OS),darwin) |
| 338 | LOCAL_REQUIRED_MODULES += $(APEX_TEST_MODULE) |
| 339 | endif |
| 340 | include $(BUILD_PHONY_PACKAGE) |
| 341 | |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 342 | # Create canonical name -> file name symlink in the symbol directory for the |
| 343 | # debug APEX. The symbol files for it are installed to |
| 344 | # $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art.debug. However, since it's |
| 345 | # available via /apex/com.android.art at runtime, create a symlink so that |
Martin Stjernholm | fb3a94b | 2019-07-05 22:27:36 +0100 | [diff] [blame] | 346 | # $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art is linked to |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 347 | # $(TARGET_OUT_UNSTRIPPED)/apex/$(TARGET_ART_APEX). We skip this for the release |
| 348 | # APEX which has com.android.art as $(TARGET_ART_APEX). Note that installation |
| 349 | # of the symlink is triggered by the apex_manifest.pb file which is the file |
| 350 | # that is guaranteed to be created regardless of the value of |
| 351 | # TARGET_FLATTEN_APEX. |
Colin Cross | e3a6485 | 2020-10-21 13:47:25 -0700 | [diff] [blame] | 352 | # TODO(b/171419613): the symlink is disabled because the |
| 353 | # $OUT/symbols/apex/com.android.art name is taken by the com.android.art apex |
| 354 | # even when com.android.art.debug is selected by TARGET_ART_APEX. |
| 355 | # Disabling the symlink means that symbols for the com.android.art.debug apex |
| 356 | # will not be found. |
Jiyong Park | 72da985 | 2019-03-21 15:01:11 +0900 | [diff] [blame] | 357 | ifeq ($(TARGET_FLATTEN_APEX),true) |
Jooyung Han | afaa457 | 2019-11-12 13:03:50 +0900 | [diff] [blame] | 358 | art_apex_manifest_file := $(PRODUCT_OUT)/system/apex/$(TARGET_ART_APEX)/apex_manifest.pb |
Jiyong Park | 72da985 | 2019-03-21 15:01:11 +0900 | [diff] [blame] | 359 | else |
Jooyung Han | afaa457 | 2019-11-12 13:03:50 +0900 | [diff] [blame] | 360 | art_apex_manifest_file := $(PRODUCT_OUT)/apex/$(TARGET_ART_APEX)/apex_manifest.pb |
Jiyong Park | 72da985 | 2019-03-21 15:01:11 +0900 | [diff] [blame] | 361 | endif |
| 362 | |
Martin Stjernholm | 84e5bb9 | 2019-09-05 19:56:46 +0100 | [diff] [blame] | 363 | art_apex_symlink_timestamp := $(call intermediates-dir-for,FAKE,com.android.art)/symlink.timestamp |
| 364 | $(art_apex_manifest_file): $(art_apex_symlink_timestamp) |
| 365 | $(art_apex_manifest_file): PRIVATE_LINK_NAME := $(TARGET_OUT_UNSTRIPPED)/apex/com.android.art |
| 366 | $(art_apex_symlink_timestamp): |
Colin Cross | e3a6485 | 2020-10-21 13:47:25 -0700 | [diff] [blame] | 367 | #ifeq ($(TARGET_ART_APEX),com.android.art) |
| 368 | # $(hide) if [ -L $(PRIVATE_LINK_NAME) ]; then rm -f $(PRIVATE_LINK_NAME); fi |
| 369 | #else |
| 370 | # $(hide) mkdir -p $(dir $(PRIVATE_LINK_NAME)) |
| 371 | # $(hide) rm -rf $(PRIVATE_LINK_NAME) |
| 372 | # $(hide) ln -sf $(TARGET_ART_APEX) $(PRIVATE_LINK_NAME) |
| 373 | #endif |
Jiyong Park | 055cf9a | 2019-04-30 13:11:11 +0900 | [diff] [blame] | 374 | $(hide) touch $@ |
Jingwen Chen | e3920c6 | 2020-09-23 05:36:03 +0000 | [diff] [blame] | 375 | $(art_apex_symlink_timestamp): .KATI_SYMLINK_OUTPUTS := $(PRIVATE_LINK_NAME) |
Jiyong Park | 72da985 | 2019-03-21 15:01:11 +0900 | [diff] [blame] | 376 | |
Martin Stjernholm | 84e5bb9 | 2019-09-05 19:56:46 +0100 | [diff] [blame] | 377 | art_apex_manifest_file := |
Roland Levillain | 5305880 | 2018-11-14 17:32:18 +0000 | [diff] [blame] | 378 | |
| 379 | ####################### |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 380 | # Fake packages for ART |
| 381 | |
| 382 | # The art-runtime package depends on the core ART libraries and binaries. It exists so we can |
| 383 | # manipulate the set of things shipped, e.g., add debug versions and so on. |
| 384 | |
| 385 | include $(CLEAR_VARS) |
| 386 | LOCAL_MODULE := art-runtime |
| 387 | |
| 388 | # Base requirements. |
| 389 | LOCAL_REQUIRED_MODULES := \ |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 390 | dalvikvm.com.android.art \ |
| 391 | dex2oat.com.android.art \ |
| 392 | dexoptanalyzer.com.android.art \ |
| 393 | libart.com.android.art \ |
| 394 | libart-compiler.com.android.art \ |
| 395 | libopenjdkjvm.com.android.art \ |
| 396 | libopenjdkjvmti.com.android.art \ |
| 397 | profman.com.android.art \ |
| 398 | libadbconnection.com.android.art \ |
| 399 | libperfetto_hprof.com.android.art \ |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 400 | |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 401 | # Potentially add in debug variants: |
| 402 | # |
| 403 | # * We will never add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = false. |
| 404 | # * We will always add them if PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD = true. |
| 405 | # * Otherwise, we will add them by default to userdebug and eng builds. |
Andreas Gampe | 5ed27bc | 2017-07-06 15:43:12 -0700 | [diff] [blame] | 406 | art_target_include_debug_build := $(PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD) |
| 407 | ifneq (false,$(art_target_include_debug_build)) |
| 408 | ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT))) |
| 409 | art_target_include_debug_build := true |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 410 | endif |
Andreas Gampe | 5ed27bc | 2017-07-06 15:43:12 -0700 | [diff] [blame] | 411 | ifeq (true,$(art_target_include_debug_build)) |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 412 | LOCAL_REQUIRED_MODULES += \ |
Jiyong Park | 066dd902 | 2019-12-19 02:11:59 +0000 | [diff] [blame] | 413 | dex2oatd.com.android.art.debug \ |
| 414 | dexoptanalyzerd.com.android.art.debug \ |
| 415 | libartd.com.android.art.debug \ |
| 416 | libartd-compiler.com.android.art.debug \ |
| 417 | libopenjdkd.com.android.art.debug \ |
| 418 | libopenjdkjvmd.com.android.art.debug \ |
| 419 | libopenjdkjvmtid.com.android.art.debug \ |
| 420 | profmand.com.android.art.debug \ |
| 421 | libadbconnectiond.com.android.art.debug \ |
| 422 | libperfetto_hprofd.com.android.art.debug \ |
Andreas Gampe | b494903 | 2017-06-22 15:24:41 -0700 | [diff] [blame] | 423 | |
| 424 | endif |
| 425 | endif |
| 426 | |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 427 | include $(BUILD_PHONY_PACKAGE) |
| 428 | |
Orion Hodson | 5cb98a9 | 2019-03-25 15:07:16 +0000 | [diff] [blame] | 429 | # The art-tools package depends on helpers and tools that are useful for developers. Similar |
| 430 | # dependencies exist for the APEX builds for these tools (see build/apex/Android.bp). |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 431 | |
Yo Chiang | e492f7e | 2020-08-07 04:22:18 +0000 | [diff] [blame] | 432 | ifneq ($(HOST_OS),darwin) |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 433 | include $(CLEAR_VARS) |
| 434 | LOCAL_MODULE := art-tools |
Orion Hodson | 362e9f2 | 2019-03-28 09:30:20 +0000 | [diff] [blame] | 435 | LOCAL_IS_HOST_MODULE := true |
| 436 | LOCAL_REQUIRED_MODULES := \ |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 437 | ahat \ |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 438 | dexdump \ |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 439 | hprof-conv \ |
Orion Hodson | dfad9fc | 2019-03-26 11:34:21 +0000 | [diff] [blame] | 440 | |
| 441 | # A subset of the tools are disabled when HOST_PREFER_32_BIT is defined as make reports that |
| 442 | # they are not supported on host (b/129323791). This is likely due to art_apex disabling host |
| 443 | # APEX builds when HOST_PREFER_32_BIT is set (b/120617876). |
| 444 | ifneq ($(HOST_PREFER_32_BIT),true) |
Orion Hodson | 362e9f2 | 2019-03-28 09:30:20 +0000 | [diff] [blame] | 445 | LOCAL_REQUIRED_MODULES += \ |
Orion Hodson | dfad9fc | 2019-03-26 11:34:21 +0000 | [diff] [blame] | 446 | dexdiag \ |
| 447 | dexlist \ |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 448 | oatdump \ |
| 449 | |
Orion Hodson | dfad9fc | 2019-03-26 11:34:21 +0000 | [diff] [blame] | 450 | endif |
| 451 | |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 452 | include $(BUILD_PHONY_PACKAGE) |
Yo Chiang | e492f7e | 2020-08-07 04:22:18 +0000 | [diff] [blame] | 453 | endif # HOST_OS != darwin |
Andreas Gampe | 760a58f | 2017-06-22 15:21:09 -0700 | [diff] [blame] | 454 | |
Andreas Gampe | 10edbb1 | 2016-01-06 17:59:49 -0800 | [diff] [blame] | 455 | #################################################################################################### |
| 456 | # Fake packages to ensure generation of libopenjdkd when one builds with mm/mmm/mmma. |
| 457 | # |
| 458 | # The library is required for starting a runtime in debug mode, but libartd does not depend on it |
| 459 | # (dependency cycle otherwise). |
| 460 | # |
| 461 | # Note: * As the package is phony to create a dependency the package name is irrelevant. |
| 462 | # * We make MULTILIB explicit to "both," just to state here that we want both libraries on |
| 463 | # 64-bit systems, even if it is the default. |
| 464 | |
| 465 | # ART on the host. |
Yo Chiang | e492f7e | 2020-08-07 04:22:18 +0000 | [diff] [blame] | 466 | ifneq ($(HOST_OS),darwin) |
Andreas Gampe | 10edbb1 | 2016-01-06 17:59:49 -0800 | [diff] [blame] | 467 | ifeq ($(ART_BUILD_HOST_DEBUG),true) |
| 468 | include $(CLEAR_VARS) |
| 469 | LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency |
| 470 | LOCAL_MULTILIB := both |
| 471 | LOCAL_REQUIRED_MODULES := libopenjdkd |
| 472 | LOCAL_IS_HOST_MODULE := true |
| 473 | include $(BUILD_PHONY_PACKAGE) |
| 474 | endif |
Yo Chiang | e492f7e | 2020-08-07 04:22:18 +0000 | [diff] [blame] | 475 | endif # HOST_OS != darwin |
Andreas Gampe | 10edbb1 | 2016-01-06 17:59:49 -0800 | [diff] [blame] | 476 | |
Brian Carlstrom | 76aa0c0 | 2011-10-11 15:29:43 -0700 | [diff] [blame] | 477 | ######################################################################## |
Brian Carlstrom | fa50baa | 2013-08-02 01:00:27 -0700 | [diff] [blame] | 478 | # "m build-art" for quick minimal build |
| 479 | .PHONY: build-art |
| 480 | build-art: build-art-host build-art-target |
| 481 | |
Nicolas Geoffray | c69b3f8 | 2020-06-22 12:33:38 +0000 | [diff] [blame] | 482 | # For host, we extract the ICU data from the apex and install it to HOST_OUT/I18N_APEX. |
Nicolas Geoffray | 1525960 | 2020-07-30 09:31:15 +0100 | [diff] [blame] | 483 | $(HOST_I18N_DATA): $(TARGET_OUT)/apex/$(I18N_APEX).apex $(HOST_OUT)/bin/deapexer |
Nicolas Geoffray | c69b3f8 | 2020-06-22 12:33:38 +0000 | [diff] [blame] | 484 | $(call extract-from-apex,$(I18N_APEX)) |
Martin Stjernholm | 76228ff | 2020-07-16 22:17:09 +0100 | [diff] [blame] | 485 | rm -rf $(HOST_OUT)/$(I18N_APEX) |
Nicolas Geoffray | c69b3f8 | 2020-06-22 12:33:38 +0000 | [diff] [blame] | 486 | mkdir -p $(HOST_OUT)/$(I18N_APEX)/ |
| 487 | cp -R $(TARGET_OUT)/apex/$(I18N_APEX)/etc/ $(HOST_OUT)/$(I18N_APEX)/ |
Martin Stjernholm | 76228ff | 2020-07-16 22:17:09 +0100 | [diff] [blame] | 488 | touch $@ |
Nicolas Geoffray | c69b3f8 | 2020-06-22 12:33:38 +0000 | [diff] [blame] | 489 | |
Brian Carlstrom | fa50baa | 2013-08-02 01:00:27 -0700 | [diff] [blame] | 490 | .PHONY: build-art-host |
Nicolas Geoffray | 1525960 | 2020-07-30 09:31:15 +0100 | [diff] [blame] | 491 | build-art-host: $(HOST_OUT_EXECUTABLES)/art $(ART_HOST_DEPENDENCIES) $(HOST_CORE_IMG_OUTS) $(HOST_I18N_DATA) |
Brian Carlstrom | fa50baa | 2013-08-02 01:00:27 -0700 | [diff] [blame] | 492 | |
| 493 | .PHONY: build-art-target |
Andreas Gampe | 63fc30e | 2014-10-24 21:58:16 -0700 | [diff] [blame] | 494 | 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] | 495 | |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 496 | PRIVATE_ART_APEX_DEPENDENCY_FILES := \ |
| 497 | bin/dalvikvm32 \ |
| 498 | bin/dalvikvm64 \ |
| 499 | bin/dalvikvm \ |
Nicolas Geoffray | ec64f20 | 2020-04-20 15:05:54 +0100 | [diff] [blame] | 500 | bin/dex2oat32 \ |
| 501 | bin/dex2oat64 \ |
Orion Hodson | e89ffab | 2020-01-08 18:36:44 +0000 | [diff] [blame] | 502 | bin/dexdump \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 503 | |
Martin Stjernholm | 84e5bb9 | 2019-09-05 19:56:46 +0100 | [diff] [blame] | 504 | PRIVATE_ART_APEX_DEPENDENCY_LIBS := \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 505 | lib/libadbconnection.so \ |
Roland Levillain | 95e0303 | 2019-03-26 17:00:28 +0000 | [diff] [blame] | 506 | lib/libandroidio.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 507 | lib/libartbase.so \ |
| 508 | lib/libart-compiler.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 509 | lib/libart-dexlayout.so \ |
| 510 | lib/libart-disassembler.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 511 | lib/libartpalette.so \ |
| 512 | lib/libart.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 513 | lib/libbacktrace.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 514 | lib/libdexfile_external.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 515 | lib/libdexfile_support.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 516 | lib/libdexfile.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 517 | lib/libdt_fd_forward.so \ |
| 518 | lib/libdt_socket.so \ |
| 519 | lib/libexpat.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 520 | lib/libjavacore.so \ |
| 521 | lib/libjdwp.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 522 | lib/liblzma.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 523 | lib/libmeminfo.so \ |
| 524 | lib/libnativebridge.so \ |
| 525 | lib/libnativehelper.so \ |
| 526 | lib/libnativeloader.so \ |
| 527 | lib/libnpt.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 528 | lib/libopenjdkjvm.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 529 | lib/libopenjdkjvmti.so \ |
| 530 | lib/libopenjdk.so \ |
| 531 | lib/libpac.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 532 | lib/libprocinfo.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 533 | lib/libprofile.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 534 | lib/libsigchain.so \ |
| 535 | lib/libunwindstack.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 536 | lib/libvixl.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 537 | lib/libziparchive.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 538 | lib64/libadbconnection.so \ |
Roland Levillain | 95e0303 | 2019-03-26 17:00:28 +0000 | [diff] [blame] | 539 | lib64/libandroidio.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 540 | lib64/libartbase.so \ |
| 541 | lib64/libart-compiler.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 542 | lib64/libart-dexlayout.so \ |
| 543 | lib64/libart-disassembler.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 544 | lib64/libartpalette.so \ |
| 545 | lib64/libart.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 546 | lib64/libbacktrace.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 547 | lib64/libdexfile_external.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 548 | lib64/libdexfile_support.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 549 | lib64/libdexfile.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 550 | lib64/libdt_fd_forward.so \ |
| 551 | lib64/libdt_socket.so \ |
| 552 | lib64/libexpat.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 553 | lib64/libjavacore.so \ |
| 554 | lib64/libjdwp.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 555 | lib64/liblzma.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 556 | lib64/libmeminfo.so \ |
| 557 | lib64/libnativebridge.so \ |
| 558 | lib64/libnativehelper.so \ |
| 559 | lib64/libnativeloader.so \ |
| 560 | lib64/libnpt.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 561 | lib64/libopenjdkjvm.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 562 | lib64/libopenjdkjvmti.so \ |
| 563 | lib64/libopenjdk.so \ |
| 564 | lib64/libpac.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 565 | lib64/libprocinfo.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 566 | lib64/libprofile.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 567 | lib64/libsigchain.so \ |
| 568 | lib64/libunwindstack.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 569 | lib64/libvixl.so \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 570 | lib64/libziparchive.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 571 | |
Martin Stjernholm | 4bb9f67 | 2020-05-19 01:33:47 +0100 | [diff] [blame] | 572 | PRIVATE_RUNTIME_APEX_DEPENDENCY_FILES := \ |
| 573 | bin/linker \ |
| 574 | bin/linker64 \ |
| 575 | lib/bionic/libc.so \ |
| 576 | lib/bionic/libdl.so \ |
| 577 | lib/bionic/libdl_android.so \ |
| 578 | lib/bionic/libm.so \ |
| 579 | lib64/bionic/libc.so \ |
| 580 | lib64/bionic/libdl.so \ |
| 581 | lib64/bionic/libdl_android.so \ |
| 582 | lib64/bionic/libm.so \ |
| 583 | |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 584 | PRIVATE_CONSCRYPT_APEX_DEPENDENCY_LIBS := \ |
| 585 | lib/libcrypto.so \ |
| 586 | lib/libjavacrypto.so \ |
| 587 | lib/libssl.so \ |
| 588 | lib64/libcrypto.so \ |
| 589 | lib64/libjavacrypto.so \ |
| 590 | lib64/libssl.so \ |
Nicolas Geoffray | 3f285b2 | 2019-02-14 14:08:55 +0000 | [diff] [blame] | 591 | |
Victor Chang | d20e51d | 2020-05-05 16:01:19 +0100 | [diff] [blame] | 592 | PRIVATE_I18N_APEX_DEPENDENCY_LIBS := \ |
Victor Chang | 8b24762 | 2020-09-22 21:48:15 +0100 | [diff] [blame] | 593 | lib/libicu.so \ |
Victor Chang | d20e51d | 2020-05-05 16:01:19 +0100 | [diff] [blame] | 594 | lib/libicui18n.so \ |
| 595 | lib/libicu_jni.so \ |
| 596 | lib/libicuuc.so \ |
Victor Chang | 8b24762 | 2020-09-22 21:48:15 +0100 | [diff] [blame] | 597 | lib64/libicu.so \ |
Victor Chang | d20e51d | 2020-05-05 16:01:19 +0100 | [diff] [blame] | 598 | lib64/libicui18n.so \ |
| 599 | lib64/libicu_jni.so \ |
| 600 | lib64/libicuuc.so \ |
| 601 | |
Martin Stjernholm | ad71c90 | 2020-05-19 00:33:04 +0100 | [diff] [blame] | 602 | # Extracts files from an APEX into a location. The APEX can be either a .apex |
| 603 | # file in $(TARGET_OUT)/apex, or a directory in the same location. Files are |
| 604 | # extracted to $(TARGET_OUT) with the same relative paths as under the APEX |
| 605 | # root. |
| 606 | # $(1): APEX base name |
| 607 | # $(2): List of files to extract, with paths relative to the APEX root |
Martin Stjernholm | 4d55215 | 2020-05-19 16:49:43 +0100 | [diff] [blame] | 608 | # |
| 609 | # "cp -d" below doesn't work on Darwin, but this is only used for Golem builds |
| 610 | # and won't run on mac anyway. |
Martin Stjernholm | ad71c90 | 2020-05-19 00:33:04 +0100 | [diff] [blame] | 611 | define extract-from-apex |
| 612 | apex_root=$(TARGET_OUT)/apex && \ |
| 613 | apex_file=$$apex_root/$(1).apex && \ |
| 614 | apex_dir=$$apex_root/$(1) && \ |
| 615 | if [ -f $$apex_file ]; then \ |
| 616 | rm -rf $$apex_dir && \ |
| 617 | mkdir -p $$apex_dir && \ |
| 618 | debugfs=$(HOST_OUT)/bin/debugfs_static && \ |
| 619 | $(HOST_OUT)/bin/deapexer --debugfs_path $$debugfs extract $$apex_file $$apex_dir; \ |
| 620 | fi && \ |
| 621 | for f in $(2); do \ |
| 622 | sf=$$apex_dir/$$f && \ |
| 623 | df=$(TARGET_OUT)/$$f && \ |
Martin Stjernholm | 4d55215 | 2020-05-19 16:49:43 +0100 | [diff] [blame] | 624 | if [ -f $$sf -o -h $$sf ]; then \ |
Martin Stjernholm | ad71c90 | 2020-05-19 00:33:04 +0100 | [diff] [blame] | 625 | mkdir -p $$(dirname $$df) && \ |
| 626 | cp -fd $$sf $$df; \ |
| 627 | fi || exit 1; \ |
| 628 | done |
| 629 | endef |
| 630 | |
Martin Stjernholm | 4bb9f67 | 2020-05-19 01:33:47 +0100 | [diff] [blame] | 631 | # Copy or extract some required files from APEXes to the `system` (TARGET_OUT) |
| 632 | # directory. This is dangerous as these files could inadvertently stay in this |
| 633 | # directory and be included in a system image. |
Roland Levillain | c088b2e | 2019-04-02 18:18:16 +0100 | [diff] [blame] | 634 | # |
Roland Levillain | 72f6774 | 2019-03-06 15:48:08 +0000 | [diff] [blame] | 635 | # This target is only used by Golem now. |
| 636 | # |
Orion Hodson | e89ffab | 2020-01-08 18:36:44 +0000 | [diff] [blame] | 637 | # NB Android build does not use cp from: |
| 638 | # $ANDROID_BUILD_TOP/prebuilts/build-tools/path/{linux-x86,darwin-x86} |
| 639 | # which has a non-standard set of command-line flags. |
| 640 | # |
Roland Levillain | 72f6774 | 2019-03-06 15:48:08 +0000 | [diff] [blame] | 641 | # TODO(b/129332183): Remove this when Golem has full support for the |
Martin Stjernholm | fb3a94b | 2019-07-05 22:27:36 +0100 | [diff] [blame] | 642 | # ART APEX. |
Nicolas Geoffray | 3f285b2 | 2019-02-14 14:08:55 +0000 | [diff] [blame] | 643 | .PHONY: standalone-apex-files |
Nicolas Geoffray | d5c1d8a | 2020-04-29 11:10:13 +0100 | [diff] [blame] | 644 | standalone-apex-files: deapexer \ |
Nicolas Geoffray | ec64f20 | 2020-04-20 15:05:54 +0100 | [diff] [blame] | 645 | $(RELEASE_ART_APEX) \ |
Martin Stjernholm | 4bb9f67 | 2020-05-19 01:33:47 +0100 | [diff] [blame] | 646 | $(RUNTIME_APEX) \ |
Victor Chang | d20e51d | 2020-05-05 16:01:19 +0100 | [diff] [blame] | 647 | $(CONSCRYPT_APEX) \ |
| 648 | $(I18N_APEX) |
Martin Stjernholm | ad71c90 | 2020-05-19 00:33:04 +0100 | [diff] [blame] | 649 | $(call extract-from-apex,$(RELEASE_ART_APEX),\ |
| 650 | $(PRIVATE_ART_APEX_DEPENDENCY_LIBS) $(PRIVATE_ART_APEX_DEPENDENCY_FILES)) |
Martin Stjernholm | 4bb9f67 | 2020-05-19 01:33:47 +0100 | [diff] [blame] | 651 | # The Runtime APEX has the Bionic libs in ${LIB}/bionic subdirectories, |
| 652 | # so we need to move them up a level after extraction. |
Nicolas Geoffray | 402c7dd | 2020-08-17 14:13:20 +0100 | [diff] [blame] | 653 | # Also, platform libraries are installed in prebuilts, so copy them over. |
Martin Stjernholm | 4bb9f67 | 2020-05-19 01:33:47 +0100 | [diff] [blame] | 654 | $(call extract-from-apex,$(RUNTIME_APEX),\ |
| 655 | $(PRIVATE_RUNTIME_APEX_DEPENDENCY_FILES)) && \ |
| 656 | for libdir in $(TARGET_OUT)/lib $(TARGET_OUT)/lib64; do \ |
| 657 | if [ -d $$libdir/bionic ]; then \ |
| 658 | mv -f $$libdir/bionic/*.so $$libdir; \ |
| 659 | fi || exit 1; \ |
Nicolas Geoffray | 402c7dd | 2020-08-17 14:13:20 +0100 | [diff] [blame] | 660 | done && \ |
| 661 | for libdir in $(TARGET_OUT)/lib $(TARGET_OUT)/lib64; do \ |
| 662 | if [ -d $$libdir ]; then \ |
| 663 | cp prebuilts/runtime/mainline/platform/impl/$(TARGET_ARCH)/*.so $$libdir; \ |
| 664 | fi || exit 1; \ |
Martin Stjernholm | 4bb9f67 | 2020-05-19 01:33:47 +0100 | [diff] [blame] | 665 | done |
Martin Stjernholm | ad71c90 | 2020-05-19 00:33:04 +0100 | [diff] [blame] | 666 | $(call extract-from-apex,$(CONSCRYPT_APEX),\ |
| 667 | $(PRIVATE_CONSCRYPT_APEX_DEPENDENCY_LIBS)) |
| 668 | $(call extract-from-apex,$(I18N_APEX),\ |
| 669 | $(PRIVATE_I18N_APEX_DEPENDENCY_LIBS)) |
Nicolas Geoffray | 3c8e28a | 2019-01-31 15:22:10 +0000 | [diff] [blame] | 670 | |
| 671 | ######################################################################## |
Nicolas Geoffray | 5213b6c | 2017-08-14 13:32:15 +0100 | [diff] [blame] | 672 | # 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] | 673 | |
Nicolas Geoffray | c2a58f3 | 2016-09-16 12:28:12 +0100 | [diff] [blame] | 674 | .PHONY: build-art-target-golem |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 675 | # Also include libartbenchmark, we always include it when running golem. |
Nicolas Geoffray | e137a21 | 2016-12-08 13:49:54 +0000 | [diff] [blame] | 676 | # libstdc++ is needed when building for ART_TARGET_LINUX. |
Roland Levillain | d801a7b | 2019-05-01 14:59:00 +0100 | [diff] [blame] | 677 | |
Martin Stjernholm | 4bb9f67 | 2020-05-19 01:33:47 +0100 | [diff] [blame] | 678 | # Also include the Bionic libraries (libc, libdl, libdl_android, libm) and |
| 679 | # linker. |
Roland Levillain | 40890c1 | 2019-01-13 22:48:38 +0000 | [diff] [blame] | 680 | # |
Roland Levillain | 9690542 | 2019-06-28 17:05:28 +0100 | [diff] [blame] | 681 | # TODO(b/129332183): Remove this when Golem has full support for the |
Martin Stjernholm | fb3a94b | 2019-07-05 22:27:36 +0100 | [diff] [blame] | 682 | # ART APEX. |
Roland Levillain | d801a7b | 2019-05-01 14:59:00 +0100 | [diff] [blame] | 683 | |
| 684 | # Also include: |
Neil Fuller | 90ffe12 | 2019-06-06 17:25:48 +0100 | [diff] [blame] | 685 | # - a copy of the time zone data prebuilt files in |
| 686 | # /system/etc/tzdata_module/etc/tz and /system/etc/tzdata_module/etc/icu |
| 687 | # on target, (see modules `tzdata-art-test-tzdata`, |
| 688 | # `tzlookup.xml-art-test-tzdata`, and `tz_version-art-test-tzdata`, and |
| 689 | # `icu_overlay-art-test-tzdata`) |
| 690 | # so that they can be found even if the Time Zone Data APEX is not available, |
| 691 | # by setting the environment variable `ART_TEST_ANDROID_TZDATA_ROOT` |
| 692 | # to "/system/etc/tzdata_module" on device. This is a temporary change needed |
| 693 | # until Golem fully supports the Time Zone Data APEX. |
Roland Levillain | d801a7b | 2019-05-01 14:59:00 +0100 | [diff] [blame] | 694 | # |
Roland Levillain | 9690542 | 2019-06-28 17:05:28 +0100 | [diff] [blame] | 695 | # TODO(b/129332183): Remove this when Golem has full support for the |
Martin Stjernholm | fb3a94b | 2019-07-05 22:27:36 +0100 | [diff] [blame] | 696 | # ART APEX (and TZ Data APEX). |
Roland Levillain | 9690542 | 2019-06-28 17:05:28 +0100 | [diff] [blame] | 697 | |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 698 | ART_TARGET_SHARED_LIBRARY_BENCHMARK := $(TARGET_OUT_SHARED_LIBRARIES)/libartbenchmark.so |
Nicolas Geoffray | 402c7dd | 2020-08-17 14:13:20 +0100 | [diff] [blame] | 699 | ART_TARGET_SHARED_LIBRARY_PALETTE_DEPENDENCIES := \ |
| 700 | $(TARGET_OUT_SHARED_LIBRARIES)/libcutils.so \ |
| 701 | $(TARGET_OUT_SHARED_LIBRARIES)/libprocessgroup.so \ |
| 702 | $(TARGET_OUT_SHARED_LIBRARIES)/libtombstoned_client.so |
| 703 | |
Nicolas Geoffray | ec64f20 | 2020-04-20 15:05:54 +0100 | [diff] [blame] | 704 | build-art-target-golem: $(RELEASE_ART_APEX) com.android.runtime $(CONSCRYPT_APEX) \ |
Nicolas Geoffray | 5121691 | 2017-03-16 12:39:50 +0000 | [diff] [blame] | 705 | $(TARGET_OUT_EXECUTABLES)/art \ |
Nicolas Geoffray | e84f53e | 2020-05-15 16:50:17 +0100 | [diff] [blame] | 706 | $(TARGET_OUT_EXECUTABLES)/dex2oat_wrapper \ |
Nicolas Geoffray | c2a58f3 | 2016-09-16 12:28:12 +0100 | [diff] [blame] | 707 | $(TARGET_OUT)/etc/public.libraries.txt \ |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 708 | $(ART_TARGET_SHARED_LIBRARY_BENCHMARK) \ |
Nicolas Geoffray | 402c7dd | 2020-08-17 14:13:20 +0100 | [diff] [blame] | 709 | $(ART_TARGET_SHARED_LIBRARY_PALETTE_DEPENDENCIES) \ |
Nicolas Geoffray | 11303f2 | 2020-06-26 13:53:19 +0100 | [diff] [blame] | 710 | $(TARGET_OUT_SHARED_LIBRARIES)/libz.so \ |
Martin Stjernholm | c616530 | 2020-09-23 10:48:55 +0100 | [diff] [blame] | 711 | $(TARGET_OUT_SHARED_LIBRARIES)/liblz4.so \ |
Orion Hodson | c4d13ae | 2020-01-07 12:46:25 +0000 | [diff] [blame] | 712 | libartpalette-system \ |
Neil Fuller | 90ffe12 | 2019-06-06 17:25:48 +0100 | [diff] [blame] | 713 | tzdata-art-test-tzdata tzlookup.xml-art-test-tzdata \ |
| 714 | tz_version-art-test-tzdata icu_overlay-art-test-tzdata \ |
Nicolas Geoffray | 3f285b2 | 2019-02-14 14:08:55 +0000 | [diff] [blame] | 715 | standalone-apex-files |
Nicolas Geoffray | 83b7419 | 2018-04-27 10:58:45 +0100 | [diff] [blame] | 716 | # remove debug libraries from public.libraries.txt because golem builds |
Nicolas Geoffray | 91aac09 | 2018-02-16 10:09:54 +0000 | [diff] [blame] | 717 | # won't have it. |
Nicolas Geoffray | 3bf9429 | 2018-02-04 14:48:34 +0000 | [diff] [blame] | 718 | sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | 91aac09 | 2018-02-16 10:09:54 +0000 | [diff] [blame] | 719 | sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | 83b7419 | 2018-04-27 10:58:45 +0100 | [diff] [blame] | 720 | sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | 763a14a | 2018-05-21 13:16:51 +0100 | [diff] [blame] | 721 | sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt |
Nicolas Geoffray | c2a58f3 | 2016-09-16 12:28:12 +0100 | [diff] [blame] | 722 | |
| 723 | ######################################################################## |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 724 | # Phony target for building what go/lem requires on host. |
| 725 | .PHONY: build-art-host-golem |
| 726 | # Also include libartbenchmark, we always include it when running golem. |
| 727 | ART_HOST_SHARED_LIBRARY_BENCHMARK := $(ART_HOST_OUT_SHARED_LIBRARIES)/libartbenchmark.so |
| 728 | build-art-host-golem: build-art-host \ |
Nicolas Geoffray | e84f53e | 2020-05-15 16:50:17 +0100 | [diff] [blame] | 729 | $(ART_HOST_SHARED_LIBRARY_BENCHMARK) \ |
| 730 | $(HOST_OUT_EXECUTABLES)/dex2oat_wrapper |
Igor Murashkin | 017efa8 | 2016-09-22 15:46:29 -0700 | [diff] [blame] | 731 | |
| 732 | ######################################################################## |
Nicolas Geoffray | 5213b6c | 2017-08-14 13:32:15 +0100 | [diff] [blame] | 733 | # Phony target for building what go/lem requires for syncing /system to target. |
| 734 | .PHONY: build-art-unbundled-golem |
Ulya Trafimovich | fb41d42 | 2020-04-30 11:04:23 +0100 | [diff] [blame] | 735 | art_apex_jars := $(foreach pair,$(ART_APEX_JARS), $(call word-colon,2,$(pair))) |
| 736 | build-art-unbundled-golem: art-runtime linker oatdump $(art_apex_jars) conscrypt crash_dump |
Nicolas Geoffray | 5213b6c | 2017-08-14 13:32:15 +0100 | [diff] [blame] | 737 | |
| 738 | ######################################################################## |
Nicolas Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 739 | # Rules for building all dependencies for tests. |
| 740 | |
| 741 | .PHONY: build-art-host-tests |
Yohann Roussel | 05b9125 | 2015-12-09 12:02:46 +0100 | [diff] [blame] | 742 | 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] | 743 | |
| 744 | .PHONY: build-art-target-tests |
Nicolas Geoffray | 375d4eb | 2018-10-12 15:23:56 +0100 | [diff] [blame] | 745 | 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] | 746 | |
| 747 | ######################################################################## |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 748 | # targets to switch back and forth from libdvm to libart |
| 749 | |
| 750 | .PHONY: use-art |
| 751 | use-art: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 752 | $(ADB) root |
| 753 | $(ADB) wait-for-device shell stop |
| 754 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 755 | $(ADB) shell start |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 756 | |
| 757 | .PHONY: use-artd |
| 758 | use-artd: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 759 | $(ADB) root |
| 760 | $(ADB) wait-for-device shell stop |
| 761 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so |
| 762 | $(ADB) shell start |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 763 | |
| 764 | .PHONY: use-dalvik |
| 765 | use-dalvik: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 766 | $(ADB) root |
| 767 | $(ADB) wait-for-device shell stop |
| 768 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so |
| 769 | $(ADB) shell start |
Brian Carlstrom | 1e895cd | 2014-03-06 23:17:15 -0800 | [diff] [blame] | 770 | |
| 771 | .PHONY: use-art-full |
| 772 | use-art-full: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 773 | $(ADB) root |
| 774 | $(ADB) wait-for-device shell stop |
| 775 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 776 | $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\" |
| 777 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\" |
| 778 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 779 | $(ADB) shell setprop dalvik.vm.usejit false |
| 780 | $(ADB) shell start |
Brian Carlstrom | 1e895cd | 2014-03-06 23:17:15 -0800 | [diff] [blame] | 781 | |
Hiroshi Yamauchi | cb9bccd | 2014-05-19 12:29:36 -0700 | [diff] [blame] | 782 | .PHONY: use-artd-full |
| 783 | use-artd-full: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 784 | $(ADB) root |
| 785 | $(ADB) wait-for-device shell stop |
| 786 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 787 | $(ADB) shell setprop dalvik.vm.dex2oat-filter \"\" |
| 788 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter \"\" |
| 789 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so |
| 790 | $(ADB) shell setprop dalvik.vm.usejit false |
| 791 | $(ADB) shell start |
Hiroshi Yamauchi | cb9bccd | 2014-05-19 12:29:36 -0700 | [diff] [blame] | 792 | |
Mathieu Chartier | d71795b | 2015-07-14 16:59:23 -0700 | [diff] [blame] | 793 | .PHONY: use-art-jit |
| 794 | use-art-jit: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 795 | $(ADB) root |
| 796 | $(ADB) wait-for-device shell stop |
| 797 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 798 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-at-runtime" |
| 799 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-at-runtime" |
| 800 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 801 | $(ADB) shell setprop dalvik.vm.usejit true |
| 802 | $(ADB) shell start |
Brian Carlstrom | 1e895cd | 2014-03-06 23:17:15 -0800 | [diff] [blame] | 803 | |
| 804 | .PHONY: use-art-interpret-only |
| 805 | use-art-interpret-only: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 806 | $(ADB) root |
| 807 | $(ADB) wait-for-device shell stop |
| 808 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 809 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only" |
| 810 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only" |
| 811 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 812 | $(ADB) shell setprop dalvik.vm.usejit false |
| 813 | $(ADB) shell start |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 814 | |
Sebastien Hertz | 15582b9 | 2014-07-04 10:53:22 +0200 | [diff] [blame] | 815 | .PHONY: use-artd-interpret-only |
| 816 | use-artd-interpret-only: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 817 | $(ADB) root |
| 818 | $(ADB) wait-for-device shell stop |
| 819 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 820 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "interpret-only" |
| 821 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "interpret-only" |
| 822 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libartd.so |
| 823 | $(ADB) shell setprop dalvik.vm.usejit false |
| 824 | $(ADB) shell start |
Sebastien Hertz | 15582b9 | 2014-07-04 10:53:22 +0200 | [diff] [blame] | 825 | |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 826 | .PHONY: use-art-verify-none |
| 827 | use-art-verify-none: |
Nicolas Geoffray | 64c2d77 | 2018-08-31 09:22:44 +0100 | [diff] [blame] | 828 | $(ADB) root |
| 829 | $(ADB) wait-for-device shell stop |
| 830 | $(ADB) shell rm -rf $(ART_TARGET_DALVIK_CACHE_DIR)/* |
| 831 | $(ADB) shell setprop dalvik.vm.dex2oat-filter "verify-none" |
| 832 | $(ADB) shell setprop dalvik.vm.image-dex2oat-filter "verify-none" |
| 833 | $(ADB) shell setprop persist.sys.dalvik.vm.lib.2 libart.so |
| 834 | $(ADB) shell setprop dalvik.vm.usejit false |
| 835 | $(ADB) shell start |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 836 | |
Brian Carlstrom | a7a60a8 | 2013-06-24 17:41:19 -0700 | [diff] [blame] | 837 | ######################################################################## |
Brian Carlstrom | bc2f3e3 | 2011-09-22 17:16:54 -0700 | [diff] [blame] | 838 | |
Ian Rogers | 8f0bbd2 | 2014-09-26 15:31:20 -0700 | [diff] [blame] | 839 | # Clear locally used variables. |
Nicolas Geoffray | 58035ae | 2015-05-27 19:10:27 +0100 | [diff] [blame] | 840 | TEST_ART_TARGET_SYNC_DEPS := |
Narayan Kamath | 0095d88 | 2016-02-12 16:09:58 +0000 | [diff] [blame] | 841 | |
Andreas Gampe | fad48e7 | 2016-04-11 11:57:18 -0700 | [diff] [blame] | 842 | # Helper target that depends on boot image creation. |
| 843 | # |
| 844 | # Can be used, for example, to dump initialization failures: |
| 845 | # m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt |
| 846 | .PHONY: art-boot-image |
Nicolas Geoffray | a588086 | 2019-03-21 09:33:37 +0000 | [diff] [blame] | 847 | art-boot-image: $(DEXPREOPT_IMAGE_boot_$(TARGET_ARCH)) |
Calin Juravle | f01de11 | 2016-10-24 12:40:19 +0100 | [diff] [blame] | 848 | |
| 849 | .PHONY: art-job-images |
| 850 | art-job-images: \ |
Nicolas Geoffray | a588086 | 2019-03-21 09:33:37 +0000 | [diff] [blame] | 851 | art-boot-image \ |
Calin Juravle | f01de11 | 2016-10-24 12:40:19 +0100 | [diff] [blame] | 852 | $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) \ |
| 853 | $(HOST_OUT_EXECUTABLES)/dex2oats \ |
| 854 | $(HOST_OUT_EXECUTABLES)/dex2oatds \ |
| 855 | $(HOST_OUT_EXECUTABLES)/profman |
yawanng | a074920 | 2020-10-19 21:15:27 +0000 | [diff] [blame] | 856 | |
| 857 | ######################################################################## |
| 858 | |
| 859 | # Build a target that contains dex public SDK stubs for SDK version in the list. |
| 860 | # Zip files structure: |
| 861 | # public-sdk-28-stub.zip |
| 862 | # classes.dex |
| 863 | # public-sdk-29-stub.zip |
| 864 | # classes.dex |
| 865 | # public-sdk-30-stub.zip |
| 866 | # classes.dex |
| 867 | MIN_SDK_VERSION := 28 |
| 868 | SDK_VERSIONS := $(call numbers_greater_or_equal_to,$(MIN_SDK_VERSION),$(TARGET_AVAIALBLE_SDK_VERSIONS)) |
| 869 | |
| 870 | # Create dex public SDK stubs. |
| 871 | define get_public_sdk_stub_dex |
| 872 | $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_sdk_$(1)_stub_intermediates/classes.dex |
| 873 | endef |
| 874 | |
| 875 | # The input is the SDK version. |
| 876 | define create_public_sdk_dex |
| 877 | public_sdk_$(1)_stub := $$(call get_public_sdk_stub_dex,$(1)) |
| 878 | $$(public_sdk_$(1)_stub): PRIVATE_MIN_SDK_VERSION := $(1) |
| 879 | $$(public_sdk_$(1)_stub): $$(call resolve-prebuilt-sdk-jar-path,$(1)) $$(DX) $$(ZIP2ZIP) |
| 880 | $$(transform-classes.jar-to-dex) |
| 881 | endef |
| 882 | |
| 883 | $(foreach version,$(SDK_VERSIONS),$(eval $(call create_public_sdk_dex,$(version)))) |
| 884 | |
| 885 | # Create dex public SDK stubs zip. |
| 886 | define get_public_sdk_stub_zip |
| 887 | $(call intermediates-dir-for,PACKAGING,public_sdk_stub,HOST)/public-sdk-$(1)-stub.zip |
| 888 | endef |
| 889 | |
| 890 | define create_public_sdk_zip |
| 891 | PUBLIC_SDK_$(1)_STUB_ZIP_PATH := $$(call get_public_sdk_stub_zip,$(1)) |
| 892 | $$(PUBLIC_SDK_$(1)_STUB_ZIP_PATH): PRIVATE_SDK_STUBS_DEX_DIR := $$(dir $$(public_sdk_$(1)_stub)) |
| 893 | $$(PUBLIC_SDK_$(1)_STUB_ZIP_PATH): $$(SOONG_ZIP) $$(public_sdk_$(1)_stub) |
| 894 | rm -f $$@ |
| 895 | $$(SOONG_ZIP) -o $$@ -C $$(PRIVATE_SDK_STUBS_DEX_DIR) -D $$(PRIVATE_SDK_STUBS_DEX_DIR) |
| 896 | endef |
| 897 | |
| 898 | $(foreach version,$(SDK_VERSIONS),$(eval $(call create_public_sdk_zip,$(version)))) |
| 899 | |
| 900 | # Make the zip files available for prebuilts. |
| 901 | $(foreach version,$(SDK_VERSIONS),$(call dist-for-goals,sdk,$(call get_public_sdk_stub_zip,$(version)))) |
| 902 | |
| 903 | STUB_ZIP_FILES = $(foreach version,$(SDK_VERSIONS),$(call get_public_sdk_stub_zip,$(version))) |
| 904 | |
| 905 | .PHONY: public_sdk_stubs |
| 906 | public_sdk_stubs: $(STUB_ZIP_FILES) |
| 907 | |
| 908 | MIN_SDK_VERSION := |
| 909 | SDK_VERSIONS := |
| 910 | |