The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # This is included by the top-level Makefile. |
| 2 | # It sets up standard variables based on the |
| 3 | # current configuration and platform, which |
| 4 | # are not specific to what is being built. |
| 5 | |
Dan Willemsen | 8cf5aa5 | 2017-10-17 01:30:14 -0700 | [diff] [blame] | 6 | ifndef KATI |
| 7 | $(warning Directly using config.mk from make is no longer supported.) |
Dan Willemsen | 52f7482 | 2017-11-03 15:52:50 -0700 | [diff] [blame] | 8 | $(warning ) |
| 9 | $(warning If you are just attempting to build, you probably need to re-source envsetup.sh:) |
| 10 | $(warning ) |
| 11 | $(warning $$ source build/envsetup.sh) |
| 12 | $(warning ) |
| 13 | $(warning If you are attempting to emulate get_build_var, use one of the following:) |
| 14 | $(warning $$ build/soong/soong_ui.bash --dumpvar-mode) |
| 15 | $(warning $$ build/soong/soong_ui.bash --dumpvars-mode) |
| 16 | $(warning ) |
Dan Willemsen | 8cf5aa5 | 2017-10-17 01:30:14 -0700 | [diff] [blame] | 17 | $(error done) |
| 18 | endif |
| 19 | |
Dan Willemsen | 7ddc50a | 2018-10-18 16:11:40 -0700 | [diff] [blame] | 20 | BUILD_SYSTEM :=$= build/make/core |
| 21 | BUILD_SYSTEM_COMMON :=$= build/make/common |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 22 | |
Dan Willemsen | 7ddc50a | 2018-10-18 16:11:40 -0700 | [diff] [blame] | 23 | include $(BUILD_SYSTEM_COMMON)/core.mk |
Dan Willemsen | 11677ed | 2018-03-28 14:33:10 -0700 | [diff] [blame] | 24 | |
Mitch Phillips | 39ef563 | 2019-09-26 14:57:33 -0700 | [diff] [blame] | 25 | # ----------------------------------------------------------------- |
| 26 | # Rules and functions to help copy important files to DIST_DIR |
| 27 | # when requested. This must be included once only, and must be included before |
| 28 | # soong_config (as soong_config calls make_vars-$(TARGET).mk, and soong may |
| 29 | # propagate calls to dist-for-goals there). |
| 30 | include $(BUILD_SYSTEM)/distdir.mk |
| 31 | |
Dan Willemsen | 11677ed | 2018-03-28 14:33:10 -0700 | [diff] [blame] | 32 | # Mark variables that should be coming as environment variables from soong_ui |
| 33 | # as readonly |
Dan Willemsen | 78c40be | 2018-10-17 16:50:49 -0700 | [diff] [blame] | 34 | .KATI_READONLY := OUT_DIR TMPDIR BUILD_DATETIME_FILE |
| 35 | ifdef CALLED_FROM_SETUP |
Dan Willemsen | 3e8eb37 | 2018-10-20 21:37:44 -0700 | [diff] [blame] | 36 | .KATI_READONLY := CALLED_FROM_SETUP |
Dan Willemsen | 78c40be | 2018-10-17 16:50:49 -0700 | [diff] [blame] | 37 | endif |
| 38 | ifdef KATI_PACKAGE_MK_DIR |
| 39 | .KATI_READONLY := KATI_PACKAGE_MK_DIR |
| 40 | endif |
Dan Willemsen | 11677ed | 2018-03-28 14:33:10 -0700 | [diff] [blame] | 41 | |
Dan Willemsen | 2ec3e4a | 2017-10-30 13:41:53 -0700 | [diff] [blame] | 42 | # Mark variables deprecated/obsolete |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 43 | CHANGES_URL := https://android.googlesource.com/platform/build/+/master/Changes.md |
Dan Willemsen | 9569ddd | 2019-01-22 19:38:56 -0800 | [diff] [blame] | 44 | .KATI_READONLY := CHANGES_URL |
Dan Willemsen | 74afb1d | 2017-12-27 16:57:34 -0800 | [diff] [blame] | 45 | $(KATI_obsolete_var PATH,Do not use PATH directly. See $(CHANGES_URL)#PATH) |
Dan Willemsen | 79fd696 | 2017-11-28 22:32:05 -0800 | [diff] [blame] | 46 | $(KATI_obsolete_var PYTHONPATH,Do not use PYTHONPATH directly. See $(CHANGES_URL)#PYTHONPATH) |
| 47 | $(KATI_obsolete_var OUT,Use OUT_DIR instead. See $(CHANGES_URL)#OUT) |
| 48 | $(KATI_obsolete_var ANDROID_HOST_OUT,Use HOST_OUT instead. See $(CHANGES_URL)#ANDROID_HOST_OUT) |
Dan Willemsen | 74afb1d | 2017-12-27 16:57:34 -0800 | [diff] [blame] | 49 | $(KATI_obsolete_var ANDROID_PRODUCT_OUT,Use PRODUCT_OUT instead. See $(CHANGES_URL)#ANDROID_PRODUCT_OUT) |
Dan Willemsen | 79fd696 | 2017-11-28 22:32:05 -0800 | [diff] [blame] | 50 | $(KATI_obsolete_var ANDROID_HOST_OUT_TESTCASES,Use HOST_OUT_TESTCASES instead. See $(CHANGES_URL)#ANDROID_HOST_OUT_TESTCASES) |
| 51 | $(KATI_obsolete_var ANDROID_TARGET_OUT_TESTCASES,Use TARGET_OUT_TESTCASES instead. See $(CHANGES_URL)#ANDROID_TARGET_OUT_TESTCASES) |
Dan Willemsen | 0769963 | 2018-01-03 15:15:38 -0800 | [diff] [blame] | 52 | $(KATI_obsolete_var ANDROID_BUILD_TOP,Use '.' instead. See $(CHANGES_URL)#ANDROID_BUILD_TOP) |
Dan Willemsen | 79fd696 | 2017-11-28 22:32:05 -0800 | [diff] [blame] | 53 | $(KATI_obsolete_var \ |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 54 | ANDROID_TOOLCHAIN \ |
| 55 | ANDROID_TOOLCHAIN_2ND_ARCH \ |
| 56 | ANDROID_DEV_SCRIPTS \ |
| 57 | ANDROID_EMULATOR_PREBUILTS \ |
| 58 | ANDROID_PRE_BUILD_PATHS \ |
| 59 | ,See $(CHANGES_URL)#other_envsetup_variables) |
Yifan Hong | 6ce074f | 2017-12-12 18:01:09 -0800 | [diff] [blame] | 60 | $(KATI_obsolete_var PRODUCT_COMPATIBILITY_MATRIX_LEVEL_OVERRIDE,Set FCM Version in device manifest instead. See $(CHANGES_URL)#PRODUCT_COMPATIBILITY_MATRIX_LEVEL_OVERRIDE) |
Stephen Hines | 178cf8e | 2018-01-11 11:54:48 -0800 | [diff] [blame] | 61 | $(KATI_obsolete_var USE_CLANG_PLATFORM_BUILD,Clang is the only supported Android compiler. See $(CHANGES_URL)#USE_CLANG_PLATFORM_BUILD) |
Nan Zhang | 2132fbc | 2018-08-30 14:47:35 -0700 | [diff] [blame] | 62 | $(KATI_obsolete_var BUILD_DROIDDOC,Droiddoc is only supported in Soong. See details on build/soong/java/droiddoc.go) |
Nan Zhang | e063051 | 2018-09-17 14:32:52 -0700 | [diff] [blame] | 63 | $(KATI_obsolete_var BUILD_APIDIFF,Apidiff is only supported in Soong. See details on build/soong/java/droiddoc.go) |
Dan Willemsen | f063839 | 2018-09-04 22:25:22 -0700 | [diff] [blame] | 64 | $(KATI_obsolete_var \ |
| 65 | DEFAULT_GCC_CPP_STD_VERSION \ |
| 66 | HOST_GLOBAL_CFLAGS 2ND_HOST_GLOBAL_CFLAGS \ |
| 67 | HOST_GLOBAL_CONLYFLAGS 2ND_HOST_GLOBAL_CONLYFLAGS \ |
| 68 | HOST_GLOBAL_CPPFLAGS 2ND_HOST_GLOBAL_CPPFLAGS \ |
| 69 | HOST_GLOBAL_LDFLAGS 2ND_HOST_GLOBAL_LDFLAGS \ |
| 70 | HOST_GLOBAL_LLDFLAGS 2ND_HOST_GLOBAL_LLDFLAGS \ |
| 71 | HOST_CLANG_SUPPORTED 2ND_HOST_CLANG_SUPPORTED \ |
| 72 | HOST_CC 2ND_HOST_CC \ |
| 73 | HOST_CXX 2ND_HOST_CXX \ |
| 74 | HOST_CROSS_GLOBAL_CFLAGS 2ND_HOST_CROSS_GLOBAL_CFLAGS \ |
| 75 | HOST_CROSS_GLOBAL_CONLYFLAGS 2ND_HOST_CROSS_GLOBAL_CONLYFLAGS \ |
| 76 | HOST_CROSS_GLOBAL_CPPFLAGS 2ND_HOST_CROSS_GLOBAL_CPPFLAGS \ |
| 77 | HOST_CROSS_GLOBAL_LDFLAGS 2ND_HOST_CROSS_GLOBAL_LDFLAGS \ |
| 78 | HOST_CROSS_GLOBAL_LLDFLAGS 2ND_HOST_CROSS_GLOBAL_LLDFLAGS \ |
| 79 | HOST_CROSS_CLANG_SUPPORTED 2ND_HOST_CROSS_CLANG_SUPPORTED \ |
| 80 | HOST_CROSS_CC 2ND_HOST_CROSS_CC \ |
| 81 | HOST_CROSS_CXX 2ND_HOST_CROSS_CXX \ |
| 82 | TARGET_GLOBAL_CFLAGS 2ND_TARGET_GLOBAL_CFLAGS \ |
| 83 | TARGET_GLOBAL_CONLYFLAGS 2ND_TARGET_GLOBAL_CONLYFLAGS \ |
| 84 | TARGET_GLOBAL_CPPFLAGS 2ND_TARGET_GLOBAL_CPPFLAGS \ |
| 85 | TARGET_GLOBAL_LDFLAGS 2ND_TARGET_GLOBAL_LDFLAGS \ |
| 86 | TARGET_GLOBAL_LLDFLAGS 2ND_TARGET_GLOBAL_LLDFLAGS \ |
| 87 | TARGET_CLANG_SUPPORTED 2ND_TARGET_CLANG_SUPPORTED \ |
| 88 | TARGET_CC 2ND_TARGET_CC \ |
| 89 | TARGET_CXX 2ND_TARGET_CXX \ |
Dan Willemsen | 7a5c5d7 | 2018-10-07 19:41:21 -0700 | [diff] [blame] | 90 | TARGET_TOOLCHAIN_ROOT 2ND_TARGET_TOOLCHAIN_ROOT \ |
| 91 | HOST_TOOLCHAIN_ROOT 2ND_HOST_TOOLCHAIN_ROOT \ |
| 92 | HOST_CROSS_TOOLCHAIN_ROOT 2ND_HOST_CROSS_TOOLCHAIN_ROOT \ |
| 93 | HOST_TOOLS_PREFIX 2ND_HOST_TOOLS_PREFIX \ |
| 94 | HOST_CROSS_TOOLS_PREFIX 2ND_HOST_CROSS_TOOLS_PREFIX \ |
| 95 | HOST_GCC_VERSION 2ND_HOST_GCC_VERSION \ |
| 96 | HOST_CROSS_GCC_VERSION 2ND_HOST_CROSS_GCC_VERSION \ |
| 97 | TARGET_NDK_GCC_VERSION 2ND_TARGET_NDK_GCC_VERSION \ |
| 98 | GLOBAL_CFLAGS_NO_OVERRIDE GLOBAL_CPPFLAGS_NO_OVERRIDE \ |
Dan Willemsen | f063839 | 2018-09-04 22:25:22 -0700 | [diff] [blame] | 99 | ,GCC support has been removed. Use Clang instead) |
Dan Willemsen | 3e8eb37 | 2018-10-20 21:37:44 -0700 | [diff] [blame] | 100 | $(KATI_obsolete_var DIST_DIR dist_goal,Use dist-for-goals instead. See $(CHANGES_URL)#dist) |
Tom Cherry | e0f3ed5 | 2019-02-11 13:09:59 -0800 | [diff] [blame] | 101 | $(KATI_obsolete_var TARGET_ANDROID_FILESYSTEM_CONFIG_H,Use TARGET_FS_CONFIG_GEN instead) |
Dan Willemsen | 0636428 | 2019-01-02 14:32:54 -0800 | [diff] [blame] | 102 | $(KATI_deprecated_var USER,Use BUILD_USERNAME instead. See $(CHANGES_URL)#USER) |
Tom Cherry | 6b28af3 | 2019-04-16 15:18:52 -0700 | [diff] [blame] | 103 | $(KATI_obsolete_var TARGET_ROOT_OUT_SBIN,/sbin has been removed, use /system/bin instead) |
| 104 | $(KATI_obsolete_var TARGET_ROOT_OUT_SBIN_UNSTRIPPED,/sbin has been removed, use /system/bin instead) |
Dan Willemsen | 407ca58 | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 105 | $(KATI_obsolete_var BUILD_BROKEN_PHONY_TARGETS) |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 106 | $(KATI_obsolete_var BUILD_BROKEN_DUP_COPY_HEADERS) |
Dan Willemsen | e048f7e | 2019-02-09 18:58:36 -0800 | [diff] [blame] | 107 | $(KATI_obsolete_var BUILD_BROKEN_ENG_DEBUG_TAGS) |
Dan Willemsen | 3a1072a | 2019-05-14 22:03:58 -0700 | [diff] [blame] | 108 | $(KATI_obsolete_export It is a global setting. See $(CHANGES_URL)#export_keyword) |
| 109 | $(KATI_obsolete_var BUILD_BROKEN_ANDROIDMK_EXPORTS) |
Tao Bao | 84f88a4 | 2019-05-28 16:30:18 -0700 | [diff] [blame] | 110 | $(KATI_obsolete_var PRODUCT_STATIC_BOOT_CONTROL_HAL,Use shared library module instead. See $(CHANGES_URL)#PRODUCT_STATIC_BOOT_CONTROL_HAL) |
Elliott Hughes | 2e6e73b | 2019-07-18 15:03:52 -0700 | [diff] [blame] | 111 | $(KATI_obsolete_var \ |
| 112 | ARCH_ARM_HAVE_ARMV7A \ |
| 113 | ARCH_DSP_REV \ |
| 114 | ARCH_HAVE_ALIGNED_DOUBLES \ |
| 115 | ARCH_MIPS_HAS_DSP \ |
| 116 | ARCH_MIPS_HAS_FPU \ |
| 117 | ARCH_MIPS_REV6 \ |
| 118 | ARCH_X86_HAVE_AES_NI \ |
| 119 | ARCH_X86_HAVE_AVX \ |
| 120 | ARCH_X86_HAVE_AVX2 \ |
| 121 | ARCH_X86_HAVE_AVX512 \ |
| 122 | ARCH_X86_HAVE_MOVBE \ |
| 123 | ARCH_X86_HAVE_POPCNT \ |
| 124 | ARCH_X86_HAVE_SSE4 \ |
| 125 | ARCH_X86_HAVE_SSE4_2 \ |
| 126 | ARCH_X86_HAVE_SSSE3 \ |
| 127 | ) |
Elliott Hughes | 0548439 | 2019-07-30 08:41:49 -0700 | [diff] [blame] | 128 | $(KATI_obsolete_var PRODUCT_IOT) |
Elliott Hughes | 5602110 | 2019-09-06 10:58:14 -0700 | [diff] [blame] | 129 | $(KATI_obsolete_var MD5SUM) |
Yifan Hong | 88adfc6 | 2019-10-11 15:52:44 -0700 | [diff] [blame] | 130 | $(KATI_obsolete_var BOARD_HAL_STATIC_LIBRARIES, See $(CHANGES_URL)#BOARD_HAL_STATIC_LIBRARIES) |
| 131 | $(KATI_obsolete_var LOCAL_HAL_STATIC_LIBRARIES, See $(CHANGES_URL)#BOARD_HAL_STATIC_LIBRARIES) |
Dan Willemsen | 58634e1 | 2020-03-06 18:09:06 -0800 | [diff] [blame] | 132 | $(KATI_obsolete_var \ |
| 133 | TARGET_AUX_OS_VARIANT_LIST \ |
| 134 | LOCAL_AUX_ARCH \ |
| 135 | LOCAL_AUX_CPU \ |
| 136 | LOCAL_AUX_OS \ |
| 137 | LOCAL_AUX_OS_VARIANT \ |
| 138 | LOCAL_AUX_SUBARCH \ |
| 139 | LOCAL_AUX_TOOLCHAIN \ |
| 140 | LOCAL_CUSTOM_BUILD_STEP_INPUT \ |
| 141 | LOCAL_CUSTOM_BUILD_STEP_OUTPUT \ |
| 142 | LOCAL_IS_AUX_MODULE \ |
| 143 | ,AUX support has been removed) |
Dan Willemsen | efee069 | 2020-03-06 18:27:52 -0800 | [diff] [blame] | 144 | $(KATI_obsolete_var HOST_OUT_TEST_CONFIG TARGET_OUT_TEST_CONFIG LOCAL_TEST_CONFIG_OPTIONS) |
Dan Willemsen | e6bd1d2 | 2020-04-30 21:18:58 -0700 | [diff] [blame] | 145 | $(KATI_obsolete_var \ |
| 146 | TARGET_PROJECT_INCLUDES \ |
| 147 | 2ND_TARGET_PROJECT_INCLUDES \ |
| 148 | TARGET_PROJECT_SYSTEM_INCLUDES \ |
| 149 | 2ND_TARGET_PROJECT_SYSTEM_INCLUDES \ |
| 150 | ,Project include variables have been removed) |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 151 | $(KATI_obsolete_var TARGET_PREFER_32_BIT TARGET_PREFER_32_BIT_APPS TARGET_PREFER_32_BIT_EXECUTABLES) |
Colin Cross | c3ad804 | 2020-06-11 11:25:05 -0700 | [diff] [blame] | 152 | $(KATI_obsolete_var PRODUCT_ARTIFACT_SYSTEM_CERTIFICATE_REQUIREMENT_WHITELIST,Use PRODUCT_ARTIFACT_SYSTEM_CERTIFICATE_REQUIREMENT_ALLOW_LIST.) |
Colin Cross | d1cbfea | 2020-06-22 11:20:23 -0700 | [diff] [blame] | 153 | $(KATI_obsolete_var PRODUCT_ARTIFACT_PATH_REQUIREMENT_WHITELIST,Use PRODUCT_ARTIFACT_PATH_REQUIREMENT_ALLOWED_LIST.) |
Roland Levillain | cd80a6a | 2020-07-07 15:19:44 +0100 | [diff] [blame] | 154 | $(KATI_obsolete_var COVERAGE_PATHS,Use NATIVE_COVERAGE_PATHS instead) |
| 155 | $(KATI_obsolete_var COVERAGE_EXCLUDE_PATHS,Use NATIVE_COVERAGE_EXCLUDE_PATHS instead) |
Kiyoung Kim | 7ae3ce7 | 2020-06-29 11:06:16 +0900 | [diff] [blame] | 156 | $(KATI_obsolete_var BOARD_VNDK_RUNTIME_DISABLE,VNDK-Lite is no longer supported.) |
Pirama Arumuga Nainar | 1ac5384 | 2020-07-30 21:48:57 -0700 | [diff] [blame] | 157 | $(KATI_obsolete_var LOCAL_SANITIZE_BLACKLIST,Use LOCAL_SANITIZE_BLOCKLIST instead.) |
Dan Willemsen | 8b9c3cc | 2018-02-27 02:15:32 -0800 | [diff] [blame] | 158 | |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 159 | # Used to force goals to build. Only use for conditionally defined goals. |
| 160 | .PHONY: FORCE |
| 161 | FORCE: |
| 162 | |
| 163 | ORIGINAL_MAKECMDGOALS := $(MAKECMDGOALS) |
| 164 | |
Dan Willemsen | ce7f8dd | 2017-07-25 00:57:38 -0700 | [diff] [blame] | 165 | UNAME := $(shell uname -sm) |
| 166 | |
Dan Willemsen | 0ab1be6 | 2019-04-09 21:35:37 -0700 | [diff] [blame] | 167 | SRC_TARGET_DIR := $(TOPDIR)build/make/target |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 168 | |
| 169 | # Some specific paths to tools |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 170 | SRC_DROIDDOC_DIR := $(TOPDIR)build/make/tools/droiddoc |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 171 | |
Dan Willemsen | 92afd7d | 2018-05-02 00:15:41 -0700 | [diff] [blame] | 172 | # Mark some inputs as readonly |
| 173 | ifdef TARGET_DEVICE_DIR |
| 174 | .KATI_READONLY := TARGET_DEVICE_DIR |
| 175 | endif |
| 176 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 177 | ONE_SHOT_MAKEFILE := |
| 178 | .KATI_READONLY := ONE_SHOT_MAKEFILE |
| 179 | |
Steven Moreland | a64f336 | 2017-05-31 12:48:55 -0700 | [diff] [blame] | 180 | # Set up efficient math functions which are used in make. |
| 181 | # Here since this file is included by envsetup as well as during build. |
Dan Willemsen | 7ddc50a | 2018-10-18 16:11:40 -0700 | [diff] [blame] | 182 | include $(BUILD_SYSTEM_COMMON)/math.mk |
Steven Moreland | a64f336 | 2017-05-31 12:48:55 -0700 | [diff] [blame] | 183 | |
Dan Willemsen | 7ddc50a | 2018-10-18 16:11:40 -0700 | [diff] [blame] | 184 | include $(BUILD_SYSTEM_COMMON)/strings.mk |
Yifan Hong | c49bddf | 2018-09-21 16:39:37 -0700 | [diff] [blame] | 185 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 186 | include $(BUILD_SYSTEM_COMMON)/json.mk |
| 187 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 188 | # Various mappings to avoid hard-coding paths all over the place |
| 189 | include $(BUILD_SYSTEM)/pathmap.mk |
| 190 | |
Alan Viverette | fa0184f | 2018-02-15 11:26:31 -0500 | [diff] [blame] | 191 | # Allow projects to define their own globally-available variables |
| 192 | include $(BUILD_SYSTEM)/project_definitions.mk |
| 193 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 194 | # ############################################################### |
| 195 | # Build system internal files |
| 196 | # ############################################################### |
| 197 | |
Dan Willemsen | bed1918 | 2019-04-17 12:25:25 -0700 | [diff] [blame] | 198 | BUILD_COMBOS :=$= $(BUILD_SYSTEM)/combo |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 199 | |
Dan Willemsen | bed1918 | 2019-04-17 12:25:25 -0700 | [diff] [blame] | 200 | CLEAR_VARS :=$= $(BUILD_SYSTEM)/clear_vars.mk |
Christopher Ferris | 70ca5e5 | 2014-02-04 22:09:16 -0800 | [diff] [blame] | 201 | |
Dan Willemsen | bed1918 | 2019-04-17 12:25:25 -0700 | [diff] [blame] | 202 | BUILD_HOST_STATIC_LIBRARY :=$= $(BUILD_SYSTEM)/host_static_library.mk |
| 203 | BUILD_HOST_SHARED_LIBRARY :=$= $(BUILD_SYSTEM)/host_shared_library.mk |
| 204 | BUILD_STATIC_LIBRARY :=$= $(BUILD_SYSTEM)/static_library.mk |
| 205 | BUILD_HEADER_LIBRARY :=$= $(BUILD_SYSTEM)/header_library.mk |
Dan Willemsen | bed1918 | 2019-04-17 12:25:25 -0700 | [diff] [blame] | 206 | BUILD_SHARED_LIBRARY :=$= $(BUILD_SYSTEM)/shared_library.mk |
| 207 | BUILD_EXECUTABLE :=$= $(BUILD_SYSTEM)/executable.mk |
| 208 | BUILD_HOST_EXECUTABLE :=$= $(BUILD_SYSTEM)/host_executable.mk |
| 209 | BUILD_PACKAGE :=$= $(BUILD_SYSTEM)/package.mk |
| 210 | BUILD_PHONY_PACKAGE :=$= $(BUILD_SYSTEM)/phony_package.mk |
| 211 | BUILD_RRO_PACKAGE :=$= $(BUILD_SYSTEM)/build_rro_package.mk |
| 212 | BUILD_HOST_PREBUILT :=$= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 213 | BUILD_PREBUILT :=$= $(BUILD_SYSTEM)/prebuilt.mk |
| 214 | BUILD_MULTI_PREBUILT :=$= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 215 | BUILD_JAVA_LIBRARY :=$= $(BUILD_SYSTEM)/java_library.mk |
| 216 | BUILD_STATIC_JAVA_LIBRARY :=$= $(BUILD_SYSTEM)/static_java_library.mk |
| 217 | BUILD_HOST_JAVA_LIBRARY :=$= $(BUILD_SYSTEM)/host_java_library.mk |
| 218 | BUILD_COPY_HEADERS :=$= $(BUILD_SYSTEM)/copy_headers.mk |
| 219 | BUILD_NATIVE_TEST :=$= $(BUILD_SYSTEM)/native_test.mk |
Dan Willemsen | bed1918 | 2019-04-17 12:25:25 -0700 | [diff] [blame] | 220 | BUILD_FUZZ_TEST :=$= $(BUILD_SYSTEM)/fuzz_test.mk |
Narayan Kamath | 0dd273a | 2013-10-28 13:20:52 +0000 | [diff] [blame] | 221 | |
Dan Willemsen | bed1918 | 2019-04-17 12:25:25 -0700 | [diff] [blame] | 222 | BUILD_NOTICE_FILE :=$= $(BUILD_SYSTEM)/notice_files.mk |
| 223 | BUILD_HOST_DALVIK_JAVA_LIBRARY :=$= $(BUILD_SYSTEM)/host_dalvik_java_library.mk |
| 224 | BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY :=$= $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk |
| 225 | |
Dan Willemsen | 695849e | 2019-04-17 12:25:09 -0700 | [diff] [blame] | 226 | include $(BUILD_SYSTEM)/deprecation.mk |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 227 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 228 | # ############################################################### |
| 229 | # Parse out any modifier targets. |
| 230 | # ############################################################### |
| 231 | |
Dan Willemsen | 562bacc | 2017-05-25 22:10:08 -0700 | [diff] [blame] | 232 | hide := @ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 233 | |
Ying Wang | a174261 | 2015-10-28 14:33:40 -0700 | [diff] [blame] | 234 | ################################################################ |
| 235 | # Tools needed in product configuration makefiles. |
| 236 | ################################################################ |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 237 | NORMALIZE_PATH := build/make/tools/normalize_path.py |
Ying Wang | a174261 | 2015-10-28 14:33:40 -0700 | [diff] [blame] | 238 | |
| 239 | # $(1): the paths to be normalized |
| 240 | define normalize-paths |
| 241 | $(if $(1),$(shell $(NORMALIZE_PATH) $(1))) |
| 242 | endef |
| 243 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 244 | # ############################################################### |
| 245 | # Set common values |
| 246 | # ############################################################### |
| 247 | |
Dan Willemsen | eaacf5b | 2018-03-13 00:04:48 -0700 | [diff] [blame] | 248 | # Initialize SOONG_CONFIG_NAMESPACES so that it isn't recursive. |
| 249 | SOONG_CONFIG_NAMESPACES := |
| 250 | |
Bill Peckham | dba4b00 | 2020-01-02 17:59:11 -0800 | [diff] [blame] | 251 | # The add_soong_config_namespace function adds a namespace and initializes it |
| 252 | # to be empty. |
| 253 | # $1 is the namespace. |
| 254 | # Ex: $(call add_soong_config_namespace,acme) |
| 255 | |
| 256 | define add_soong_config_namespace |
| 257 | $(eval SOONG_CONFIG_NAMESPACES += $1) \ |
| 258 | $(eval SOONG_CONFIG_$1 :=) |
| 259 | endef |
| 260 | |
Bill Peckham | 62f5a47 | 2020-02-06 15:27:59 -0800 | [diff] [blame] | 261 | # The add_soong_config_var function adds a a list of soong config variables to |
| 262 | # SOONG_CONFIG_*. The variables and their values are then available to a |
Bill Peckham | dba4b00 | 2020-01-02 17:59:11 -0800 | [diff] [blame] | 263 | # soong_config_module_type in an Android.bp file. |
Bill Peckham | 62f5a47 | 2020-02-06 15:27:59 -0800 | [diff] [blame] | 264 | # $1 is the namespace. $2 is the list of variables. |
| 265 | # Ex: $(call add_soong_config_var,acme,COOL_FEATURE_A COOL_FEATURE_B) |
Bill Peckham | dba4b00 | 2020-01-02 17:59:11 -0800 | [diff] [blame] | 266 | define add_soong_config_var |
| 267 | $(eval SOONG_CONFIG_$1 += $2) \ |
Bill Peckham | 62f5a47 | 2020-02-06 15:27:59 -0800 | [diff] [blame] | 268 | $(foreach v,$2,$(eval SOONG_CONFIG_$1_$v := $($v))) |
Bill Peckham | dba4b00 | 2020-01-02 17:59:11 -0800 | [diff] [blame] | 269 | endef |
| 270 | |
| 271 | # The add_soong_config_var_value function defines a make variable and also adds |
| 272 | # the variable to SOONG_CONFIG_*. |
| 273 | # $1 is the namespace. $2 is the variable name. $3 is the variable value. |
| 274 | # Ex: $(call add_soong_config_var_value,acme,COOL_FEATURE,true) |
| 275 | |
| 276 | define add_soong_config_var_value |
| 277 | $(eval $2 := $3) \ |
| 278 | $(call add_soong_config_var,$1,$2) |
| 279 | endef |
| 280 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 281 | # Set the extensions used for various packages |
| 282 | COMMON_PACKAGE_SUFFIX := .zip |
| 283 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 284 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 285 | |
Yohann Roussel | f528e13 | 2015-03-13 12:08:26 +0100 | [diff] [blame] | 286 | ifdef TMPDIR |
| 287 | JAVA_TMPDIR_ARG := -Djava.io.tmpdir=$(TMPDIR) |
| 288 | else |
| 289 | JAVA_TMPDIR_ARG := |
| 290 | endif |
| 291 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 292 | # ############################################################### |
| 293 | # Include sub-configuration files |
| 294 | # ############################################################### |
| 295 | |
| 296 | # --------------------------------------------------------------- |
| 297 | # Try to include buildspec.mk, which will try to set stuff up. |
Brian Carlstrom | 1aeee8b | 2013-06-27 12:02:46 -0700 | [diff] [blame] | 298 | # If this file doesn't exist, the environment variables will |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 299 | # be used, and if that doesn't work, then the default is an |
| 300 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 301 | ifndef ANDROID_BUILDSPEC |
| 302 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 303 | endif |
| 304 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 305 | |
| 306 | # --------------------------------------------------------------- |
| 307 | # Define most of the global variables. These are the ones that |
| 308 | # are specific to the user's build configuration. |
| 309 | include $(BUILD_SYSTEM)/envsetup.mk |
| 310 | |
C. Sean Young | cf46998 | 2015-06-09 12:35:45 -0500 | [diff] [blame] | 311 | # Pruned directory options used when using findleaves.py |
| 312 | # See envsetup.mk for a description of SCAN_EXCLUDE_DIRS |
Colin Cross | ae58e2b | 2016-10-04 16:21:49 -0700 | [diff] [blame] | 313 | FIND_LEAVES_EXCLUDES := $(addprefix --prune=, $(SCAN_EXCLUDE_DIRS) .repo .git) |
C. Sean Young | cf46998 | 2015-06-09 12:35:45 -0500 | [diff] [blame] | 314 | |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 315 | # The build system exposes several variables for where to find the kernel |
| 316 | # headers: |
| 317 | # TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current |
| 318 | # device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers, |
| 319 | # e.g. device/samsung/tuna/kernel-headers. This directory is not |
| 320 | # explicitly set by anyone, the build system always adds this subdir. |
| 321 | # |
| 322 | # TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file |
| 323 | # to allow other directories to be included. This is useful if there's |
| 324 | # some common place where a few headers are being kept for a group |
| 325 | # of devices. For example, device/<vendor>/common/kernel-headers could |
| 326 | # contain some headers for several of <vendor>'s devices. |
| 327 | # |
| 328 | # TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance |
| 329 | # graph. This allows architecture products to provide headers for the |
| 330 | # devices using that architecture. For example, |
| 331 | # hardware/ti/omap4xxx/omap4.mk will specify |
| 332 | # PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4 |
| 333 | # specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers. |
| 334 | # The build system then combines all the values specified by all the |
| 335 | # PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance |
| 336 | # tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable. |
| 337 | # |
| 338 | # The layout of subdirs in any of the kernel-headers dir should mirror the |
| 339 | # layout of the kernel include/ directory. For example, |
| 340 | # device/samsung/tuna/kernel-headers/linux/, |
| 341 | # hardware/ti/omap4xxx/kernel-headers/media/, |
| 342 | # etc. |
| 343 | # |
| 344 | # NOTE: These directories MUST contain post-processed headers using the |
Alex Deymo | be0e7c9 | 2016-04-22 10:18:15 -0700 | [diff] [blame] | 345 | # bionic/libc/kernel/tools/clean_header.py tool. Additionally, the original |
| 346 | # kernel headers must also be checked in, but in a different subdirectory. By |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 347 | # convention, the originals should be checked into original-kernel-headers |
| 348 | # directory of the same parent dir. For example, |
| 349 | # device/samsung/tuna/kernel-headers <----- post-processed |
| 350 | # device/samsung/tuna/original-kernel-headers <----- originals |
| 351 | # |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 352 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 353 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 354 | define validate-kernel-headers |
| 355 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 356 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 357 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 358 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 359 | # also allow the board config to provide additional directories since |
| 360 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 361 | # that both are valid devices but derived_hw needs to use kernel headers |
| 362 | # from base_hw. |
| 363 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 364 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 365 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 366 | |
| 367 | # then add product-inherited includes, to allow for |
| 368 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 369 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 370 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 371 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Anton Hansson | d488d2d | 2019-02-26 15:49:25 +0000 | [diff] [blame] | 372 | .KATI_READONLY := TARGET_DEVICE_KERNEL_HEADERS TARGET_BOARD_KERNEL_HEADERS TARGET_PRODUCT_KERNEL_HEADERS |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 373 | |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 374 | # Commands to generate .toc file common to ELF .so files. |
| 375 | define _gen_toc_command_for_elf |
Shinichiro Hamaji | f0972f7 | 2015-11-05 12:51:08 +0900 | [diff] [blame] | 376 | $(hide) ($($(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)READELF) -d $(1) | grep SONAME || echo "No SONAME for $1") > $(2) |
Shinichiro Hamaji | 2b0caa3 | 2016-01-06 15:13:25 +0900 | [diff] [blame] | 377 | $(hide) $($(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)READELF) --dyn-syms $(1) | awk '{$$2=""; $$3=""; print}' >> $(2) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 378 | endef |
| 379 | |
| 380 | # Commands to generate .toc file from Darwin dynamic library. |
| 381 | define _gen_toc_command_for_macho |
Dan Willemsen | 0c31654 | 2018-06-03 16:20:08 -0700 | [diff] [blame] | 382 | $(hide) $(HOST_OTOOL) -l $(1) | grep LC_ID_DYLIB -A 5 > $(2) |
| 383 | $(hide) $(HOST_NM) -gP $(1) | cut -f1-2 -d" " | (grep -v U$$ >> $(2) || true) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 384 | endef |
| 385 | |
Dan Willemsen | 20f99a6 | 2017-10-12 01:35:14 -0700 | [diff] [blame] | 386 | ifeq ($(CALLED_FROM_SETUP),true) |
Ying Wang | 57d9060 | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 387 | include $(BUILD_SYSTEM)/ccache.mk |
Shinichiro Hamaji | ee482fd | 2015-08-17 17:38:24 +0900 | [diff] [blame] | 388 | include $(BUILD_SYSTEM)/goma.mk |
Ramy Medhat | ec8b8df | 2019-07-17 12:28:40 +0000 | [diff] [blame] | 389 | include $(BUILD_SYSTEM)/rbe.mk |
Colin Cross | 44005d4 | 2016-08-31 13:32:39 -0700 | [diff] [blame] | 390 | endif |
Colin Cross | 5a5befb | 2016-08-31 09:35:32 -0700 | [diff] [blame] | 391 | |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 392 | # GCC version selection |
| 393 | TARGET_GCC_VERSION := 4.9 |
| 394 | ifdef TARGET_2ND_ARCH |
| 395 | 2ND_TARGET_GCC_VERSION := 4.9 |
| 396 | endif |
| 397 | |
Dan Willemsen | e68100e | 2016-09-26 17:37:19 -0700 | [diff] [blame] | 398 | # Normalize WITH_STATIC_ANALYZER |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 399 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),0) |
| 400 | WITH_STATIC_ANALYZER := |
| 401 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 402 | |
Chih-Hung Hsieh | a9a55c7 | 2016-03-31 16:30:23 -0700 | [diff] [blame] | 403 | # Unset WITH_TIDY_ONLY if global WITH_TIDY_ONLY is not true nor 1. |
| 404 | ifeq (,$(filter 1 true,$(WITH_TIDY_ONLY))) |
| 405 | WITH_TIDY_ONLY := |
| 406 | endif |
| 407 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 408 | # Pick a Java compiler. |
| 409 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 410 | |
| 411 | # --------------------------------------------------------------- |
| 412 | # Check that the configuration is current. We check that |
| 413 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 414 | # Don't fail if we're called from envsetup, so they have a |
| 415 | # chance to update their environment. |
| 416 | |
| 417 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 418 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 419 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 420 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 421 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 422 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 423 | $(info *** - Re-run lunch or choosecombo) |
| 424 | $(info *** If you use buildspec.mk:) |
| 425 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 426 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 427 | $(error bailing..) |
| 428 | endif |
| 429 | endif |
| 430 | endif |
| 431 | |
Dan Willemsen | ccc4816 | 2017-06-02 15:25:20 -0700 | [diff] [blame] | 432 | # --------------------------------------------------------------- |
| 433 | # Whether we can expect a full build graph |
| 434 | ALLOW_MISSING_DEPENDENCIES := $(filter true,$(ALLOW_MISSING_DEPENDENCIES)) |
| 435 | ifneq ($(TARGET_BUILD_APPS),) |
| 436 | ALLOW_MISSING_DEPENDENCIES := true |
| 437 | endif |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 438 | ifeq ($(TARGET_BUILD_UNBUNDLED_IMAGE),true) |
| 439 | ALLOW_MISSING_DEPENDENCIES := true |
| 440 | endif |
Dan Willemsen | ccc4816 | 2017-06-02 15:25:20 -0700 | [diff] [blame] | 441 | ifneq ($(filter true,$(SOONG_ALLOW_MISSING_DEPENDENCIES)),) |
| 442 | ALLOW_MISSING_DEPENDENCIES := true |
| 443 | endif |
Dan Willemsen | ccc4816 | 2017-06-02 15:25:20 -0700 | [diff] [blame] | 444 | .KATI_READONLY := ALLOW_MISSING_DEPENDENCIES |
| 445 | |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 446 | TARGET_BUILD_USE_PREBUILT_SDKS := |
Jeongik Cha | f260154 | 2020-07-08 18:18:11 +0900 | [diff] [blame] | 447 | DISABLE_PREOPT := |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 448 | ifneq (,$(TARGET_BUILD_APPS)$(TARGET_BUILD_UNBUNDLED_IMAGE)) |
Jeongik Cha | f260154 | 2020-07-08 18:18:11 +0900 | [diff] [blame] | 449 | DISABLE_PREOPT := true |
Colin Cross | 8e0ff1c | 2018-12-18 22:43:16 -0800 | [diff] [blame] | 450 | ifndef UNBUNDLED_BUILD_SDKS_FROM_SOURCE |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 451 | TARGET_BUILD_USE_PREBUILT_SDKS := true |
Colin Cross | 8e0ff1c | 2018-12-18 22:43:16 -0800 | [diff] [blame] | 452 | endif |
| 453 | endif |
| 454 | |
Jeongik Cha | f260154 | 2020-07-08 18:18:11 +0900 | [diff] [blame] | 455 | .KATI_READONLY := \ |
| 456 | TARGET_BUILD_USE_PREBUILT_SDKS \ |
| 457 | DISABLE_PREOPT \ |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 458 | |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 459 | prebuilt_sdk_tools := prebuilts/sdk/tools |
| 460 | prebuilt_sdk_tools_bin := $(prebuilt_sdk_tools)/$(HOST_OS)/bin |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 461 | |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 462 | prebuilt_build_tools := prebuilts/build-tools |
| 463 | prebuilt_build_tools_wrappers := prebuilts/build-tools/common/bin |
| 464 | prebuilt_build_tools_jars := prebuilts/build-tools/common/framework |
Dan Willemsen | 3de78fd | 2018-05-25 16:13:52 -0700 | [diff] [blame] | 465 | prebuilt_build_tools_bin_noasan := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/bin |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 466 | ifeq ($(filter address,$(SANITIZE_HOST)),) |
Dan Willemsen | 3de78fd | 2018-05-25 16:13:52 -0700 | [diff] [blame] | 467 | prebuilt_build_tools_bin := $(prebuilt_build_tools_bin_noasan) |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 468 | else |
| 469 | prebuilt_build_tools_bin := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/asan/bin |
| 470 | endif |
| 471 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 472 | USE_PREBUILT_SDK_TOOLS_IN_PLACE := true |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 473 | |
Alan Leung | 65168a4 | 2017-11-01 17:49:52 -0700 | [diff] [blame] | 474 | # Work around for b/68406220 |
| 475 | # This should match the soong version. |
Colin Cross | cf01085 | 2018-06-06 21:46:25 +0000 | [diff] [blame] | 476 | USE_D8 := true |
Colin Cross | e938175 | 2018-06-19 10:23:50 -0700 | [diff] [blame] | 477 | .KATI_READONLY := USE_D8 |
Alan Leung | 65168a4 | 2017-11-01 17:49:52 -0700 | [diff] [blame] | 478 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 479 | # |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 480 | # Tools that are prebuilts for TARGET_BUILD_USE_PREBUILT_SDKS |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 481 | # |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 482 | ifeq (,$(TARGET_BUILD_USE_PREBUILT_SDKS)) |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 483 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 484 | MAINDEXCLASSES := $(HOST_OUT_EXECUTABLES)/mainDexClasses |
Colin Cross | e44e75a | 2017-07-18 05:22:59 +0000 | [diff] [blame] | 485 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 486 | else # TARGET_BUILD_USE_PREBUILT_SDKS |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 487 | AAPT := $(prebuilt_sdk_tools_bin)/aapt |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 488 | MAINDEXCLASSES := $(prebuilt_sdk_tools)/mainDexClasses |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 489 | endif # TARGET_BUILD_USE_PREBUILT_SDKS |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 490 | |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 491 | ifeq (,$(TARGET_BUILD_USE_PREBUILT_SDKS)) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 492 | # Use RenderScript prebuilts for unbundled builds |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 493 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc |
| 494 | BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat |
Alan Leung | 83857b6 | 2017-05-11 17:44:59 -0700 | [diff] [blame] | 495 | else |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 496 | LLVM_RS_CC := $(prebuilt_sdk_tools_bin)/llvm-rs-cc |
| 497 | BCC_COMPAT := $(prebuilt_sdk_tools_bin)/bcc_compat |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 498 | endif |
Alan Leung | 83857b6 | 2017-05-11 17:44:59 -0700 | [diff] [blame] | 499 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 500 | prebuilt_sdk_tools := |
| 501 | prebuilt_sdk_tools_bin := |
Colin Cross | 5f89212 | 2017-04-17 14:59:43 -0700 | [diff] [blame] | 502 | |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 503 | ACP := $(prebuilt_build_tools_bin)/acp |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 504 | CKATI := $(prebuilt_build_tools_bin)/ckati |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 505 | DEPMOD := $(HOST_OUT_EXECUTABLES)/depmod |
| 506 | FILESLIST := $(SOONG_HOST_OUT_EXECUTABLES)/fileslist |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 507 | FILESLIST_UTIL :=$= build/make/tools/fileslist_util.py |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 508 | HOST_INIT_VERIFIER := $(HOST_OUT_EXECUTABLES)/host_init_verifier |
Dan Willemsen | 4c36d45 | 2018-02-26 18:26:44 -0800 | [diff] [blame] | 509 | XMLLINT := $(SOONG_HOST_OUT_EXECUTABLES)/xmllint |
Colin Cross | f272adb | 2019-08-08 12:56:01 -0700 | [diff] [blame] | 510 | |
| 511 | # SOONG_ZIP is exported by Soong, but needs to be defined early for |
| 512 | # $OUT/dexpreopt.global. It will be verified against the Soong version. |
| 513 | SOONG_ZIP := $(SOONG_HOST_OUT_EXECUTABLES)/soong_zip |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 514 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 515 | # --------------------------------------------------------------- |
| 516 | # Generic tools. |
| 517 | |
Dan Willemsen | fd72f7f | 2020-07-17 19:52:55 -0700 | [diff] [blame] | 518 | # These dependencies are now handled via dependencies on prebuilt_build_tool |
| 519 | BISON_DATA :=$= |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 520 | |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 521 | YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm |
| 522 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 523 | DOXYGEN:= doxygen |
Steve Fung | cb2e67f | 2015-09-24 01:40:52 -0700 | [diff] [blame] | 524 | ifeq ($(HOST_OS),linux) |
| 525 | BREAKPAD_DUMP_SYMS := $(HOST_OUT_EXECUTABLES)/dump_syms |
| 526 | else |
| 527 | # For non-supported hosts, do not generate breakpad symbols. |
| 528 | BREAKPAD_GENERATE_SYMBOLS := false |
| 529 | endif |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 530 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
Yu Shan | 10be65d | 2018-08-03 23:48:10 +0000 | [diff] [blame] | 531 | NANOPB_SRCS := $(HOST_OUT_EXECUTABLES)/protoc-gen-nanopb |
Keun Soo Yim | 3d48475 | 2016-02-19 11:06:58 -0800 | [diff] [blame] | 532 | VTSC := $(HOST_OUT_EXECUTABLES)/vtsc$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 533 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 534 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 535 | LZ4 := $(HOST_OUT_EXECUTABLES)/lz4$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 536 | ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 537 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 538 | else |
| 539 | MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG) |
| 540 | endif |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 541 | ifeq (,$(strip $(BOARD_CUSTOM_BPTTOOL))) |
| 542 | BPTTOOL := $(HOST_OUT_EXECUTABLES)/bpttool$(HOST_EXECUTABLE_SUFFIX) |
| 543 | else |
| 544 | BPTTOOL := $(BOARD_CUSTOM_BPTTOOL) |
| 545 | endif |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 546 | ifeq (,$(strip $(BOARD_CUSTOM_AVBTOOL))) |
| 547 | AVBTOOL := $(HOST_OUT_EXECUTABLES)/avbtool$(HOST_EXECUTABLE_SUFFIX) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 548 | else |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 549 | AVBTOOL := $(BOARD_CUSTOM_AVBTOOL) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 550 | endif |
Tor Norbye | cb58fa1 | 2018-12-28 07:47:50 -0800 | [diff] [blame] | 551 | APICHECK := $(HOST_OUT_JAVA_LIBRARIES)/metalava$(COMMON_JAVA_PACKAGE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 552 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
Tianjie Xu | 5733222 | 2018-08-15 16:16:21 -0700 | [diff] [blame] | 553 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg_mke2fs |
Jin Qian | abcec5e | 2017-03-10 16:53:45 -0800 | [diff] [blame] | 554 | MKE2FS_CONF := system/extras/ext4_utils/mke2fs.conf |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 555 | MKSQUASHFSUSERIMG := $(HOST_OUT_EXECUTABLES)/mksquashfsimage.sh |
JP Abgrall | 5bfed5a | 2014-06-16 14:17:40 -0700 | [diff] [blame] | 556 | MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 557 | SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX) |
| 558 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 559 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 560 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Ying Wang | ed0361f | 2015-04-19 09:55:39 -0700 | [diff] [blame] | 561 | DATA_BINDING_COMPILER := $(HOST_OUT_JAVA_LIBRARIES)/databinding-compiler.jar |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 562 | FAT16COPY := build/make/tools/fat16copy.py |
Logan Chien | 0e53d88 | 2018-11-06 17:32:40 +0800 | [diff] [blame] | 563 | CHECK_ELF_FILE := build/make/tools/check_elf_file.py |
David Anderson | 1ef03e2 | 2018-08-30 13:11:47 -0700 | [diff] [blame] | 564 | LPMAKE := $(HOST_OUT_EXECUTABLES)/lpmake$(HOST_EXECUTABLE_SUFFIX) |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 565 | ADD_IMG_TO_TARGET_FILES := $(HOST_OUT_EXECUTABLES)/add_img_to_target_files$(HOST_EXECUTABLE_SUFFIX) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 566 | BUILD_IMAGE := $(HOST_OUT_EXECUTABLES)/build_image$(HOST_EXECUTABLE_SUFFIX) |
| 567 | BUILD_SUPER_IMAGE := $(HOST_OUT_EXECUTABLES)/build_super_image$(HOST_EXECUTABLE_SUFFIX) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 568 | IMG_FROM_TARGET_FILES := $(HOST_OUT_EXECUTABLES)/img_from_target_files$(HOST_EXECUTABLE_SUFFIX) |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 569 | MAKE_RECOVERY_PATCH := $(HOST_OUT_EXECUTABLES)/make_recovery_patch$(HOST_EXECUTABLE_SUFFIX) |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 570 | OTA_FROM_TARGET_FILES := $(HOST_OUT_EXECUTABLES)/ota_from_target_files$(HOST_EXECUTABLE_SUFFIX) |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 571 | SPARSE_IMG := $(HOST_OUT_EXECUTABLES)/sparse_img$(HOST_EXECUTABLE_SUFFIX) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 572 | CHECK_PARTITION_SIZES := $(HOST_OUT_EXECUTABLES)/check_partition_sizes$(HOST_EXECUTABLE_SUFFIX) |
Yohann Roussel | 2809666 | 2015-02-02 12:18:20 +0100 | [diff] [blame] | 573 | |
Dan Willemsen | 4a9a244 | 2019-01-17 23:01:45 -0800 | [diff] [blame] | 574 | PROGUARD_HOME := external/proguard |
| 575 | PROGUARD := $(PROGUARD_HOME)/bin/proguard.sh |
| 576 | PROGUARD_DEPS := $(PROGUARD) $(PROGUARD_HOME)/lib/proguard.jar |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 577 | JAVATAGS := build/make/tools/java-event-log-tags.py |
| 578 | MERGETAGS := build/make/tools/merge-event-log-tags.py |
Colin Cross | 8a30f72 | 2014-04-28 16:27:32 -0700 | [diff] [blame] | 579 | APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg |
| 580 | VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer |
Tao Bao | d5ab10e | 2019-05-02 18:17:18 -0700 | [diff] [blame] | 581 | BUILD_VERITY_METADATA := $(HOST_OUT_EXECUTABLES)/build_verity_metadata |
Colin Cross | 477cf2b | 2014-04-16 18:49:56 -0700 | [diff] [blame] | 582 | BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 583 | BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer |
Tao Bao | e98fb7a | 2017-02-17 14:11:13 -0800 | [diff] [blame] | 584 | FUTILITY := $(HOST_OUT_EXECUTABLES)/futility-host |
Tao Bao | d14c2f8 | 2019-05-06 16:23:09 -0700 | [diff] [blame] | 585 | VBOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/vboot_signer |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 586 | FEC := $(HOST_OUT_EXECUTABLES)/fec |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 587 | |
David Sehr | 976c3c3 | 2019-04-03 09:30:06 -0700 | [diff] [blame] | 588 | DEXDUMP := $(HOST_OUT_EXECUTABLES)/dexdump$(BUILD_EXECUTABLE_SUFFIX) |
Mathieu Chartier | a4b993b | 2017-02-28 11:17:32 -0800 | [diff] [blame] | 589 | PROFMAN := $(HOST_OUT_EXECUTABLES)/profman |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 590 | |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 591 | FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin |
| 592 | FINDBUGS := $(FINDBUGS_DIR)/findbugs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 593 | |
Jeff Gaston | d2ba724 | 2018-01-31 17:34:07 -0500 | [diff] [blame] | 594 | JETIFIER := prebuilts/sdk/tools/jetifier/jetifier-standalone/bin/jetifier-standalone |
| 595 | |
Yifan Hong | 770ab05 | 2018-11-02 13:43:30 -0700 | [diff] [blame] | 596 | EXTRACT_KERNEL := build/make/tools/extract_kernel.py |
| 597 | |
Tobias Thierer | 7e99d45 | 2017-12-20 18:36:56 +0000 | [diff] [blame] | 598 | # Path to tools.jar |
| 599 | HOST_JDK_TOOLS_JAR := $(ANDROID_JAVA8_HOME)/lib/tools.jar |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 600 | |
Aurimas Liutikas | d0bead6 | 2020-06-05 23:16:51 +0000 | [diff] [blame] | 601 | APICHECK_COMMAND := $(JAVA) -Xmx4g -jar $(APICHECK) --no-banner --compatible-output=no |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 602 | |
Colin Cross | c3ad804 | 2020-06-11 11:25:05 -0700 | [diff] [blame] | 603 | # Boolean variable determining if the allow list for compatible properties is enabled |
Jaekyun Seok | 2528cd2 | 2018-01-16 14:14:59 +0900 | [diff] [blame] | 604 | PRODUCT_COMPATIBLE_PROPERTY := false |
| 605 | ifneq ($(PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE),) |
| 606 | PRODUCT_COMPATIBLE_PROPERTY := $(PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE) |
| 607 | else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 608 | #$(warning no product shipping level defined) |
| 609 | else ifneq ($(call math_lt,27,$(PRODUCT_SHIPPING_API_LEVEL)),) |
| 610 | PRODUCT_COMPATIBLE_PROPERTY := true |
| 611 | endif |
| 612 | |
| 613 | .KATI_READONLY := \ |
| 614 | PRODUCT_COMPATIBLE_PROPERTY |
| 615 | |
Steven Moreland | 2b32469 | 2017-05-18 15:26:59 -0700 | [diff] [blame] | 616 | # Boolean variable determining if Treble is fully enabled |
| 617 | PRODUCT_FULL_TREBLE := false |
| 618 | ifneq ($(PRODUCT_FULL_TREBLE_OVERRIDE),) |
| 619 | PRODUCT_FULL_TREBLE := $(PRODUCT_FULL_TREBLE_OVERRIDE) |
| 620 | else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 621 | #$(warning no product shipping level defined) |
| 622 | else ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),26),) |
| 623 | PRODUCT_FULL_TREBLE := true |
| 624 | endif |
| 625 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 626 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior and remove |
| 627 | # references to it here and below. |
| 628 | ifdef PRODUCT_NOTICE_SPLIT_OVERRIDE |
| 629 | $(error PRODUCT_NOTICE_SPLIT_OVERRIDE cannot be set.) |
| 630 | endif |
| 631 | |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 632 | requirements := \ |
| 633 | PRODUCT_TREBLE_LINKER_NAMESPACES \ |
| 634 | PRODUCT_SEPOLICY_SPLIT \ |
| 635 | PRODUCT_ENFORCE_VINTF_MANIFEST \ |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 636 | PRODUCT_NOTICE_SPLIT |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 637 | |
| 638 | # If it is overriden, then the requirement override is taken, otherwise it's |
| 639 | # PRODUCT_FULL_TREBLE |
| 640 | $(foreach req,$(requirements),$(eval \ |
| 641 | $(req) := $(if $($(req)_OVERRIDE),$($(req)_OVERRIDE),$(PRODUCT_FULL_TREBLE)))) |
Steven Moreland | 27aaeca | 2017-12-06 17:21:02 +0000 | [diff] [blame] | 642 | # If the requirement is false for any reason, then it's not PRODUCT_FULL_TREBLE |
| 643 | $(foreach req,$(requirements),$(eval \ |
| 644 | PRODUCT_FULL_TREBLE := $(if $(filter false,$($(req))),false,$(PRODUCT_FULL_TREBLE)))) |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 645 | |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 646 | PRODUCT_FULL_TREBLE_OVERRIDE ?= |
| 647 | $(foreach req,$(requirements),$(eval $(req)_OVERRIDE ?=)) |
| 648 | |
Steven Moreland | c2e80af | 2018-09-13 16:57:51 -0700 | [diff] [blame] | 649 | # TODO(b/114488870): disallow PRODUCT_FULL_TREBLE_OVERRIDE from being used. |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 650 | .KATI_READONLY := \ |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 651 | PRODUCT_FULL_TREBLE_OVERRIDE \ |
| 652 | $(foreach req,$(requirements),$(req)_OVERRIDE) \ |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 653 | $(requirements) \ |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 654 | PRODUCT_FULL_TREBLE \ |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 655 | |
Steven Moreland | c2e80af | 2018-09-13 16:57:51 -0700 | [diff] [blame] | 656 | $(KATI_obsolete_var $(foreach req,$(requirements),$(req)_OVERRIDE) \ |
| 657 | ,This should be referenced without the _OVERRIDE suffix.) |
| 658 | |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 659 | requirements := |
| 660 | |
Jaekyun Seok | c227ce7 | 2018-02-08 07:19:55 +0900 | [diff] [blame] | 661 | # BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED can be true only if early-mount of |
| 662 | # partitions is supported. But the early-mount must be supported for full |
| 663 | # treble products, and so BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED should be set |
| 664 | # by default for full treble products. |
| 665 | ifeq ($(PRODUCT_FULL_TREBLE),true) |
| 666 | BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED ?= true |
| 667 | endif |
| 668 | |
Justin Yun | 571737e | 2017-12-12 15:47:14 +0900 | [diff] [blame] | 669 | # If PRODUCT_USE_VNDK is true and BOARD_VNDK_VERSION is not defined yet, |
| 670 | # BOARD_VNDK_VERSION will be set to "current" as default. |
| 671 | # PRODUCT_USE_VNDK will be true in Android-P or later launching devices. |
| 672 | PRODUCT_USE_VNDK := false |
| 673 | ifneq ($(PRODUCT_USE_VNDK_OVERRIDE),) |
| 674 | PRODUCT_USE_VNDK := $(PRODUCT_USE_VNDK_OVERRIDE) |
| 675 | else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 676 | # No shipping level defined |
Justin Yun | 66c7af8 | 2019-12-20 19:17:38 +0900 | [diff] [blame] | 677 | else ifeq ($(call math_gt,$(PRODUCT_SHIPPING_API_LEVEL),27),true) |
Justin Yun | 571737e | 2017-12-12 15:47:14 +0900 | [diff] [blame] | 678 | PRODUCT_USE_VNDK := $(PRODUCT_FULL_TREBLE) |
| 679 | endif |
| 680 | |
| 681 | ifeq ($(PRODUCT_USE_VNDK),true) |
| 682 | ifndef BOARD_VNDK_VERSION |
| 683 | BOARD_VNDK_VERSION := current |
| 684 | endif |
| 685 | endif |
| 686 | |
Justin Yun | 66c7af8 | 2019-12-20 19:17:38 +0900 | [diff] [blame] | 687 | $(KATI_obsolete_var PRODUCT_USE_VNDK,Use BOARD_VNDK_VERSION instead) |
| 688 | $(KATI_obsolete_var PRODUCT_USE_VNDK_OVERRIDE,Use BOARD_VNDK_VERSION instead) |
Justin Yun | 70f7dba | 2020-09-07 19:29:45 +0900 | [diff] [blame] | 689 | |
| 690 | ifdef PRODUCT_PRODUCT_VNDK_VERSION |
| 691 | ifndef BOARD_VNDK_VERSION |
| 692 | # VNDK for product partition is not available unless BOARD_VNDK_VERSION |
| 693 | # defined. |
| 694 | $(error PRODUCT_PRODUCT_VNDK_VERSION cannot be defined without defining BOARD_VNDK_VERSION) |
| 695 | endif |
| 696 | endif |
Justin Yun | 571737e | 2017-12-12 15:47:14 +0900 | [diff] [blame] | 697 | |
Jiyong Park | b8f1682 | 2018-04-23 10:39:54 +0900 | [diff] [blame] | 698 | # Set BOARD_SYSTEMSDK_VERSIONS to the latest SystemSDK version starting from P-launching |
| 699 | # devices if unset. |
| 700 | ifndef BOARD_SYSTEMSDK_VERSIONS |
| 701 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 702 | ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),28),) |
| 703 | ifeq (REL,$(PLATFORM_VERSION_CODENAME)) |
| 704 | BOARD_SYSTEMSDK_VERSIONS := $(PLATFORM_SDK_VERSION) |
| 705 | else |
| 706 | BOARD_SYSTEMSDK_VERSIONS := $(PLATFORM_VERSION_CODENAME) |
| 707 | endif |
| 708 | endif |
| 709 | endif |
| 710 | endif |
| 711 | |
Jeongik Cha | 0d1d981 | 2020-08-20 20:21:36 +0900 | [diff] [blame] | 712 | ifndef BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES |
| 713 | BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES := current |
| 714 | else |
| 715 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 716 | ifneq ($(call math_lt,$(BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES),$(PRODUCT_SHIPPING_API_LEVEL)),) |
| 717 | $(error BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES ($(BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES)) must be greater than or equal to PRODUCT_SHIPPING_API_LEVEL ($(PRODUCT_SHIPPING_API_LEVEL))) |
| 718 | endif |
| 719 | endif |
| 720 | endif |
| 721 | .KATI_READONLY := BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES |
Jiyong Park | b8f1682 | 2018-04-23 10:39:54 +0900 | [diff] [blame] | 722 | |
Dan Willemsen | e49ee70 | 2017-09-29 15:32:22 -0700 | [diff] [blame] | 723 | ifdef PRODUCT_SHIPPING_API_LEVEL |
Jiyong Park | 95f9313 | 2018-01-22 15:25:14 +0900 | [diff] [blame] | 724 | ifneq ($(call numbers_less_than,$(PRODUCT_SHIPPING_API_LEVEL),$(BOARD_SYSTEMSDK_VERSIONS)),) |
| 725 | $(error BOARD_SYSTEMSDK_VERSIONS ($(BOARD_SYSTEMSDK_VERSIONS)) must all be greater than or equal to PRODUCT_SHIPPING_API_LEVEL ($(PRODUCT_SHIPPING_API_LEVEL))) |
| 726 | endif |
Martijn Coenen | 08f10d0 | 2018-01-22 09:01:15 +0100 | [diff] [blame] | 727 | ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),28),) |
| 728 | ifneq ($(TARGET_IS_64_BIT), true) |
| 729 | ifneq ($(TARGET_USES_64_BIT_BINDER), true) |
| 730 | $(error When PRODUCT_SHIPPING_API_LEVEL >= 28, TARGET_USES_64_BIT_BINDER must be true) |
| 731 | endif |
| 732 | endif |
| 733 | endif |
Bowgo Tsai | e4e3018 | 2018-08-14 00:13:24 +0800 | [diff] [blame] | 734 | ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),29),) |
| 735 | ifneq ($(BOARD_OTA_FRAMEWORK_VBMETA_VERSION_OVERRIDE),) |
| 736 | $(error When PRODUCT_SHIPPING_API_LEVEL >= 29, BOARD_OTA_FRAMEWORK_VBMETA_VERSION_OVERRIDE cannot be set) |
| 737 | endif |
| 738 | endif |
Dan Willemsen | e49ee70 | 2017-09-29 15:32:22 -0700 | [diff] [blame] | 739 | endif |
| 740 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 741 | # The default key if not set as LOCAL_CERTIFICATE |
| 742 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 743 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 744 | else |
Dan Willemsen | 0ab1be6 | 2019-04-09 21:35:37 -0700 | [diff] [blame] | 745 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/make/target/product/security/testkey |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 746 | endif |
Anton Hansson | d488d2d | 2019-02-26 15:49:25 +0000 | [diff] [blame] | 747 | .KATI_READONLY := DEFAULT_SYSTEM_DEV_CERTIFICATE |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 748 | |
Remi NGUYEN VAN | 87d0f27 | 2019-08-07 18:13:33 +0900 | [diff] [blame] | 749 | # Certificate for the NetworkStack sepolicy context |
| 750 | ifdef PRODUCT_MAINLINE_SEPOLICY_DEV_CERTIFICATES |
| 751 | MAINLINE_SEPOLICY_DEV_CERTIFICATES := $(PRODUCT_MAINLINE_SEPOLICY_DEV_CERTIFICATES) |
| 752 | else |
| 753 | MAINLINE_SEPOLICY_DEV_CERTIFICATES := $(dir $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
| 754 | endif |
| 755 | |
Colin Cross | d68a884 | 2020-02-21 17:29:37 -0800 | [diff] [blame] | 756 | BUILD_NUMBER_FROM_FILE := $$(cat $(SOONG_OUT_DIR)/build_number.txt) |
Nan Zhang | 975f41e | 2018-02-14 13:30:53 -0800 | [diff] [blame] | 757 | BUILD_DATETIME_FROM_FILE := $$(cat $(BUILD_DATETIME_FILE)) |
Colin Cross | e96bfdb | 2017-11-03 15:49:25 -0700 | [diff] [blame] | 758 | |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 759 | # SEPolicy versions |
| 760 | |
| 761 | # PLATFORM_SEPOLICY_VERSION is a number of the form "NN.m" with "NN" mapping to |
| 762 | # PLATFORM_SDK_VERSION and "m" as a minor number which allows for SELinux |
| 763 | # changes independent of PLATFORM_SDK_VERSION. This value will be set to |
| 764 | # 10000.0 to represent tip-of-tree development that is inherently unstable and |
| 765 | # thus designed not to work with any shipping vendor policy. This is similar in |
| 766 | # spirit to how DEFAULT_APP_TARGET_SDK is set. |
| 767 | # The minor version ('m' component) must be updated every time a platform release |
| 768 | # is made which breaks compatibility with the previous platform sepolicy version, |
| 769 | # not just on every increase in PLATFORM_SDK_VERSION. The minor version should |
| 770 | # be reset to 0 on every bump of the PLATFORM_SDK_VERSION. |
Ian Pedowitz | bed3e52 | 2019-05-11 09:59:43 -0700 | [diff] [blame] | 771 | sepolicy_major_vers := 29 |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 772 | sepolicy_minor_vers := 0 |
| 773 | |
| 774 | ifneq ($(sepolicy_major_vers), $(PLATFORM_SDK_VERSION)) |
| 775 | $(error sepolicy_major_version does not match PLATFORM_SDK_VERSION, please update.) |
| 776 | endif |
Tri Vo | d9c8e95 | 2018-03-27 13:49:19 -0700 | [diff] [blame] | 777 | |
| 778 | TOT_SEPOLICY_VERSION := 10000.0 |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 779 | ifneq (REL,$(PLATFORM_VERSION_CODENAME)) |
Tri Vo | d9c8e95 | 2018-03-27 13:49:19 -0700 | [diff] [blame] | 780 | PLATFORM_SEPOLICY_VERSION := $(TOT_SEPOLICY_VERSION) |
| 781 | else |
| 782 | PLATFORM_SEPOLICY_VERSION := $(join $(addsuffix .,$(sepolicy_major_vers)), $(sepolicy_minor_vers)) |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 783 | endif |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 784 | sepolicy_major_vers := |
| 785 | sepolicy_minor_vers := |
| 786 | |
Yifan Hong | 9bf9301 | 2018-02-05 15:52:46 -0800 | [diff] [blame] | 787 | # A list of SEPolicy versions, besides PLATFORM_SEPOLICY_VERSION, that the framework supports. |
| 788 | PLATFORM_SEPOLICY_COMPAT_VERSIONS := \ |
| 789 | 26.0 \ |
Tri Vo | 047c4d5 | 2018-07-17 15:00:26 -0700 | [diff] [blame] | 790 | 27.0 \ |
| 791 | 28.0 \ |
Tri Vo | 790db2f | 2019-06-01 17:06:05 -0700 | [diff] [blame] | 792 | 29.0 \ |
Inseob Kim | f369fef | 2020-05-07 17:05:19 +0900 | [diff] [blame] | 793 | 30.0 \ |
Yifan Hong | 9bf9301 | 2018-02-05 15:52:46 -0800 | [diff] [blame] | 794 | |
Tri Vo | d9c8e95 | 2018-03-27 13:49:19 -0700 | [diff] [blame] | 795 | .KATI_READONLY := \ |
| 796 | PLATFORM_SEPOLICY_COMPAT_VERSIONS \ |
| 797 | PLATFORM_SEPOLICY_VERSION \ |
| 798 | TOT_SEPOLICY_VERSION \ |
| 799 | |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 800 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 801 | ifneq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
| 802 | $(error PRODUCT_USE_DYNAMIC_PARTITIONS must be true when PRODUCT_RETROFIT_DYNAMIC_PARTITIONS \ |
| 803 | is set) |
| 804 | endif |
| 805 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 806 | ifeq (true,$(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),29)) |
| 807 | $(error Devices with shipping API level $(PRODUCT_SHIPPING_API_LEVEL) must not set \ |
| 808 | PRODUCT_RETROFIT_DYNAMIC_PARTITIONS) |
| 809 | endif |
| 810 | endif |
| 811 | endif |
| 812 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 813 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
Yifan Hong | f84c7e5 | 2019-02-13 15:07:46 -0800 | [diff] [blame] | 814 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 815 | $(error BOARD_BUILD_SYSTEM_ROOT_IMAGE cannot be true for devices with dynamic partitions) |
| 816 | endif |
Yifan Hong | 889b1f7 | 2019-03-13 12:27:07 -0700 | [diff] [blame] | 817 | ifneq ($(PRODUCT_USE_DYNAMIC_PARTITION_SIZE),true) |
| 818 | $(error PRODUCT_USE_DYNAMIC_PARTITION_SIZE must be true for devices with dynamic partitions) |
| 819 | endif |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 820 | endif |
| 821 | |
Yifan Hong | 889b1f7 | 2019-03-13 12:27:07 -0700 | [diff] [blame] | 822 | ifeq ($(PRODUCT_BUILD_SUPER_PARTITION),true) |
| 823 | ifneq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
| 824 | $(error Can only build super partition for devices with dynamic partitions) |
| 825 | endif |
| 826 | endif |
| 827 | |
| 828 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 829 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITION_SIZE),true) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 830 | |
| 831 | ifneq ($(BOARD_SYSTEMIMAGE_PARTITION_SIZE),) |
| 832 | ifneq ($(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE),) |
| 833 | $(error Should not define BOARD_SYSTEMIMAGE_PARTITION_SIZE and \ |
| 834 | BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE together) |
Yifan Hong | ef4cd71 | 2018-05-18 17:46:04 -0700 | [diff] [blame] | 835 | endif |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 836 | endif |
| 837 | |
Yifan Hong | 749062d | 2018-06-19 16:23:16 -0700 | [diff] [blame] | 838 | ifneq ($(BOARD_VENDORIMAGE_PARTITION_SIZE),) |
| 839 | ifneq ($(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE),) |
| 840 | $(error Should not define BOARD_VENDORIMAGE_PARTITION_SIZE and \ |
| 841 | BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE together) |
| 842 | endif |
| 843 | endif |
| 844 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 845 | ifneq ($(BOARD_ODMIMAGE_PARTITION_SIZE),) |
| 846 | ifneq ($(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE),) |
| 847 | $(error Should not define BOARD_ODMIMAGE_PARTITION_SIZE and \ |
| 848 | BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE together) |
| 849 | endif |
| 850 | endif |
| 851 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 852 | ifneq ($(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE),) |
| 853 | ifneq ($(BOARD_VENDOR_DLKMIMAGE_PARTITION_RESERVED_SIZE),) |
| 854 | $(error Should not define BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE and \ |
| 855 | BOARD_VENDOR_DLKMIMAGE_PARTITION_RESERVED_SIZE together) |
| 856 | endif |
| 857 | endif |
| 858 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 859 | ifneq ($(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE),) |
| 860 | ifneq ($(BOARD_ODM_DLKMIMAGE_PARTITION_RESERVED_SIZE),) |
| 861 | $(error Should not define BOARD_ODM_DLKMIMAGE_PARTITION_SIZE and \ |
| 862 | BOARD_ODM_DLKMIMAGE_PARTITION_RESERVED_SIZE together) |
| 863 | endif |
| 864 | endif |
| 865 | |
Yifan Hong | 56a6c3b | 2018-07-20 15:19:34 -0700 | [diff] [blame] | 866 | ifneq ($(BOARD_PRODUCTIMAGE_PARTITION_SIZE),) |
| 867 | ifneq ($(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE),) |
| 868 | $(error Should not define BOARD_PRODUCTIMAGE_PARTITION_SIZE and \ |
| 869 | BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE together) |
| 870 | endif |
| 871 | endif |
| 872 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 873 | ifneq ($(BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE),) |
| 874 | ifneq ($(BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE),) |
| 875 | $(error Should not define BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE and \ |
| 876 | BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE together) |
Yifan Hong | 9c35a02 | 2018-07-20 15:33:47 -0700 | [diff] [blame] | 877 | endif |
| 878 | endif |
| 879 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 880 | endif # PRODUCT_USE_DYNAMIC_PARTITION_SIZE |
| 881 | |
Yifan Hong | 889b1f7 | 2019-03-13 12:27:07 -0700 | [diff] [blame] | 882 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 883 | |
| 884 | # BOARD_SUPER_PARTITION_GROUPS defines a list of "updatable groups". Each updatable group is a |
| 885 | # group of partitions that share the same pool of free spaces. |
| 886 | # For each group in BOARD_SUPER_PARTITION_GROUPS, a BOARD_{GROUP}_SIZE and |
| 887 | # BOARD_{GROUP}_PARTITION_PARTITION_LIST may be defined. |
| 888 | # - BOARD_{GROUP}_SIZE: The maximum sum of sizes of all partitions in the group. |
Yifan Hong | a50b5e3 | 2018-10-25 13:17:27 -0700 | [diff] [blame] | 889 | # Must not be empty. |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 890 | # - BOARD_{GROUP}_PARTITION_PARTITION_LIST: the list of partitions that belongs to this group. |
| 891 | # If empty, no partitions belong to this group, and the sum of sizes is effectively 0. |
| 892 | $(foreach group,$(call to-upper,$(BOARD_SUPER_PARTITION_GROUPS)), \ |
Yifan Hong | 889b1f7 | 2019-03-13 12:27:07 -0700 | [diff] [blame] | 893 | $(eval BOARD_$(group)_SIZE := $(strip $(BOARD_$(group)_SIZE))) \ |
| 894 | $(if $(BOARD_$(group)_SIZE),,$(error BOARD_$(group)_SIZE must not be empty)) \ |
| 895 | $(eval .KATI_READONLY := BOARD_$(group)_SIZE) \ |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 896 | $(eval BOARD_$(group)_PARTITION_LIST ?=) \ |
| 897 | $(eval .KATI_READONLY := BOARD_$(group)_PARTITION_LIST) \ |
Yifan Hong | 889b1f7 | 2019-03-13 12:27:07 -0700 | [diff] [blame] | 898 | ) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 899 | |
| 900 | # BOARD_*_PARTITION_LIST: a list of the following tokens |
Yifan Hong | c08cbf0 | 2020-09-15 19:07:39 +0000 | [diff] [blame^] | 901 | valid_super_partition_list := system vendor product system_ext odm vendor_dlkm odm_dlkm |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 902 | $(foreach group,$(call to-upper,$(BOARD_SUPER_PARTITION_GROUPS)), \ |
| 903 | $(if $(filter-out $(valid_super_partition_list),$(BOARD_$(group)_PARTITION_LIST)), \ |
| 904 | $(error BOARD_$(group)_PARTITION_LIST contains invalid partition name \ |
| 905 | $(filter-out $(valid_super_partition_list),$(BOARD_$(group)_PARTITION_LIST)). \ |
| 906 | Valid names are $(valid_super_partition_list)))) |
Yifan Hong | 78ae261 | 2018-07-24 17:44:18 -0700 | [diff] [blame] | 907 | valid_super_partition_list := |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 908 | |
| 909 | |
| 910 | # Define BOARD_SUPER_PARTITION_PARTITION_LIST, the sum of all BOARD_*_PARTITION_LIST |
| 911 | ifdef BOARD_SUPER_PARTITION_PARTITION_LIST |
| 912 | $(error BOARD_SUPER_PARTITION_PARTITION_LIST should not be defined, but computed from \ |
| 913 | BOARD_SUPER_PARTITION_GROUPS and BOARD_*_PARTITION_LIST) |
| 914 | endif |
| 915 | BOARD_SUPER_PARTITION_PARTITION_LIST := \ |
Luca Stefani | c158e42 | 2020-05-12 20:36:31 +0200 | [diff] [blame] | 916 | $(foreach group,$(call to-upper,$(BOARD_SUPER_PARTITION_GROUPS)),$(BOARD_$(group)_PARTITION_LIST)) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 917 | .KATI_READONLY := BOARD_SUPER_PARTITION_PARTITION_LIST |
| 918 | |
Yifan Hong | e5d879a | 2018-11-27 11:37:38 -0800 | [diff] [blame] | 919 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 920 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 921 | |
| 922 | # The metadata device must be specified manually for retrofitting. |
Yifan Hong | c767f7c | 2018-11-08 15:41:24 -0800 | [diff] [blame] | 923 | ifeq ($(BOARD_SUPER_PARTITION_METADATA_DEVICE),) |
| 924 | $(error Must specify BOARD_SUPER_PARTITION_METADATA_DEVICE if PRODUCT_RETROFIT_DYNAMIC_PARTITIONS=true.) |
| 925 | endif |
| 926 | |
| 927 | # The super partition block device list must be specified manually for retrofitting. |
| 928 | ifeq ($(BOARD_SUPER_PARTITION_BLOCK_DEVICES),) |
| 929 | $(error Must specify BOARD_SUPER_PARTITION_BLOCK_DEVICES if PRODUCT_RETROFIT_DYNAMIC_PARTITIONS=true.) |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 930 | endif |
| 931 | |
| 932 | # The metadata device must be included in the super partition block device list. |
| 933 | ifeq (,$(filter $(BOARD_SUPER_PARTITION_METADATA_DEVICE),$(BOARD_SUPER_PARTITION_BLOCK_DEVICES))) |
| 934 | $(error BOARD_SUPER_PARTITION_METADATA_DEVICE is not listed in BOARD_SUPER_PARTITION_BLOCK_DEVICES.) |
| 935 | endif |
| 936 | |
| 937 | # The metadata device must be supplied to init via the kernel command-line. |
Anton Hansson | 72e36f0 | 2019-02-26 17:36:30 +0000 | [diff] [blame] | 938 | INTERNAL_KERNEL_CMDLINE += androidboot.super_partition=$(BOARD_SUPER_PARTITION_METADATA_DEVICE) |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 939 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 940 | BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE := true |
| 941 | |
| 942 | # If "vendor" is listed as one of the dynamic partitions but without its image available (e.g. an |
| 943 | # AOSP target built without vendor image), don't build the retrofit full OTA package. Because we |
| 944 | # won't be able to build meaningful super_* images for retrofitting purpose. |
| 945 | ifneq (,$(filter vendor,$(BOARD_SUPER_PARTITION_PARTITION_LIST))) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 946 | ifndef BUILDING_VENDOR_IMAGE |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 947 | ifndef BOARD_PREBUILT_VENDORIMAGE |
| 948 | BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE := |
| 949 | endif # BOARD_PREBUILT_VENDORIMAGE |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 950 | endif # BUILDING_VENDOR_IMAGE |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 951 | endif # BOARD_SUPER_PARTITION_PARTITION_LIST |
| 952 | |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 953 | else # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS |
| 954 | |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 955 | # For normal devices, we populate BOARD_SUPER_PARTITION_BLOCK_DEVICES so the |
| 956 | # build can handle both cases consistently. |
Yifan Hong | 035c0ea | 2019-01-04 14:54:56 -0800 | [diff] [blame] | 957 | ifeq ($(BOARD_SUPER_PARTITION_METADATA_DEVICE),) |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 958 | BOARD_SUPER_PARTITION_METADATA_DEVICE := super |
Yifan Hong | 035c0ea | 2019-01-04 14:54:56 -0800 | [diff] [blame] | 959 | endif |
| 960 | |
| 961 | ifeq ($(BOARD_SUPER_PARTITION_BLOCK_DEVICES),) |
| 962 | BOARD_SUPER_PARTITION_BLOCK_DEVICES := $(BOARD_SUPER_PARTITION_METADATA_DEVICE) |
| 963 | endif |
| 964 | |
| 965 | # If only one super block device, default to super partition size. |
| 966 | ifeq ($(word 2,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 967 | BOARD_SUPER_PARTITION_$(call to-upper,$(strip $(BOARD_SUPER_PARTITION_BLOCK_DEVICES)))_DEVICE_SIZE ?= \ |
| 968 | $(BOARD_SUPER_PARTITION_SIZE) |
| 969 | endif |
| 970 | |
| 971 | ifneq ($(BOARD_SUPER_PARTITION_METADATA_DEVICE),super) |
Anton Hansson | 72e36f0 | 2019-02-26 17:36:30 +0000 | [diff] [blame] | 972 | INTERNAL_KERNEL_CMDLINE += androidboot.super_partition=$(BOARD_SUPER_PARTITION_METADATA_DEVICE) |
Yifan Hong | 035c0ea | 2019-01-04 14:54:56 -0800 | [diff] [blame] | 973 | endif |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 974 | BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE := |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 975 | |
| 976 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS |
| 977 | endif # BOARD_SUPER_PARTITION_SIZE |
Daniel Norman | 0bf940c | 2019-06-10 12:50:19 -0700 | [diff] [blame] | 978 | BOARD_SUPER_PARTITION_BLOCK_DEVICES ?= |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 979 | .KATI_READONLY := BOARD_SUPER_PARTITION_BLOCK_DEVICES |
Daniel Norman | 0bf940c | 2019-06-10 12:50:19 -0700 | [diff] [blame] | 980 | BOARD_SUPER_PARTITION_METADATA_DEVICE ?= |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 981 | .KATI_READONLY := BOARD_SUPER_PARTITION_METADATA_DEVICE |
Daniel Norman | 0bf940c | 2019-06-10 12:50:19 -0700 | [diff] [blame] | 982 | BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE ?= |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 983 | .KATI_READONLY := BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 984 | |
| 985 | $(foreach device,$(call to-upper,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)), \ |
Yifan Hong | e5d879a | 2018-11-27 11:37:38 -0800 | [diff] [blame] | 986 | $(eval BOARD_SUPER_PARTITION_$(device)_DEVICE_SIZE := $(strip $(BOARD_SUPER_PARTITION_$(device)_DEVICE_SIZE))) \ |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 987 | $(if $(BOARD_SUPER_PARTITION_$(device)_DEVICE_SIZE),, \ |
Yifan Hong | 035c0ea | 2019-01-04 14:54:56 -0800 | [diff] [blame] | 988 | $(error BOARD_SUPER_PARTITION_$(device)_DEVICE_SIZE must not be empty)) \ |
David Anderson | 619fe2d | 2018-10-30 18:47:59 -0700 | [diff] [blame] | 989 | $(eval .KATI_READONLY := BOARD_SUPER_PARTITION_$(device)_DEVICE_SIZE)) |
| 990 | |
Daniel Norman | 0bf940c | 2019-06-10 12:50:19 -0700 | [diff] [blame] | 991 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
Yifan Hong | ef4cd71 | 2018-05-18 17:46:04 -0700 | [diff] [blame] | 992 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 993 | # ############################################################### |
| 994 | # Set up final options. |
| 995 | # ############################################################### |
| 996 | |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 997 | # We run gcc/clang with PWD=/proc/self/cwd to remove the $TOP |
| 998 | # from the debug output. That way two builds in two different |
| 999 | # directories will create the same output. |
| 1000 | # /proc doesn't exist on Darwin. |
| 1001 | ifeq ($(HOST_OS),linux) |
| 1002 | RELATIVE_PWD := PWD=/proc/self/cwd |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 1003 | else |
| 1004 | RELATIVE_PWD := |
| 1005 | endif |
| 1006 | |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 1007 | # Flags for DEX2OAT |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 1008 | first_non_empty_of_three = $(if $(1),$(1),$(if $(2),$(2),$(3))) |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 1009 | DEX2OAT_TARGET_ARCH := $(TARGET_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 1010 | DEX2OAT_TARGET_CPU_VARIANT := $(call first_non_empty_of_three,$(TARGET_CPU_VARIANT),$(TARGET_ARCH_VARIANT),default) |
Anton Hansson | 71b7f7f | 2019-02-21 11:36:37 +0000 | [diff] [blame] | 1011 | DEX2OAT_TARGET_CPU_VARIANT_RUNTIME := $(call first_non_empty_of_three,$(TARGET_CPU_VARIANT_RUNTIME),$(TARGET_ARCH_VARIANT),default) |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 1012 | DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 1013 | |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 1014 | ifdef TARGET_2ND_ARCH |
| 1015 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 1016 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT := $(call first_non_empty_of_three,$(TARGET_2ND_CPU_VARIANT),$(TARGET_2ND_ARCH_VARIANT),default) |
Anton Hansson | 71b7f7f | 2019-02-21 11:36:37 +0000 | [diff] [blame] | 1017 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT_RUNTIME := $(call first_non_empty_of_three,$(TARGET_2ND_CPU_VARIANT_RUNTIME),$(TARGET_2ND_ARCH_VARIANT),default) |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 1018 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 1019 | endif |
| 1020 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1021 | # ############################################################### |
| 1022 | # Collect a list of the SDK versions that we could compile against |
| 1023 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 1024 | # ############################################################### |
| 1025 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 1026 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 1027 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 1028 | |
Ying Wang | 589e8c5 | 2015-05-19 16:03:57 -0700 | [diff] [blame] | 1029 | # The path where app can reference the support library resources. |
Jeongik Cha | d05b57a | 2020-07-08 18:10:38 +0900 | [diff] [blame] | 1030 | ifdef TARGET_BUILD_USE_PREBUILT_SDKS |
Ying Wang | 589e8c5 | 2015-05-19 16:03:57 -0700 | [diff] [blame] | 1031 | SUPPORT_LIBRARY_ROOT := $(HISTORICAL_SDK_VERSIONS_ROOT)/current/support |
| 1032 | else |
| 1033 | SUPPORT_LIBRARY_ROOT := frameworks/support |
| 1034 | endif |
| 1035 | |
Anton Hansson | 66d47b8 | 2018-04-27 14:11:17 +0100 | [diff] [blame] | 1036 | get-sdk-version = $(if $(findstring _,$(1)),$(subst core_,,$(subst system_,,$(subst test_,,$(1)))),$(1)) |
| 1037 | get-sdk-api = $(if $(findstring _,$(1)),$(patsubst %_$(call get-sdk-version,$(1)),%,$(1)),public) |
| 1038 | get-prebuilt-sdk-dir = $(HISTORICAL_SDK_VERSIONS_ROOT)/$(call get-sdk-version,$(1))/$(call get-sdk-api,$(1)) |
| 1039 | |
Anton Hansson | 400673c | 2018-04-10 16:16:33 +0100 | [diff] [blame] | 1040 | # Resolve LOCAL_SDK_VERSION to prebuilt module name, e.g.: |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1041 | # 23 -> sdk_public_23_android |
| 1042 | # system_current -> sdk_system_current_android |
Anton Hansson | 400673c | 2018-04-10 16:16:33 +0100 | [diff] [blame] | 1043 | # $(1): An sdk version (LOCAL_SDK_VERSION) |
Anton Hansson | f5cefdc | 2018-04-12 16:17:55 +0100 | [diff] [blame] | 1044 | # $(2): optional library name (default: android) |
Anton Hansson | 400673c | 2018-04-10 16:16:33 +0100 | [diff] [blame] | 1045 | define resolve-prebuilt-sdk-module |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1046 | $(if $(findstring _,$(1)),\ |
Anton Hansson | f5cefdc | 2018-04-12 16:17:55 +0100 | [diff] [blame] | 1047 | sdk_$(1)_$(or $(2),android),\ |
| 1048 | sdk_public_$(1)_$(or $(2),android)) |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1049 | endef |
| 1050 | |
Anton Hansson | 66d47b8 | 2018-04-27 14:11:17 +0100 | [diff] [blame] | 1051 | # Resolve LOCAL_SDK_VERSION to prebuilt android.jar |
| 1052 | # $(1): LOCAL_SDK_VERSION |
| 1053 | resolve-prebuilt-sdk-jar-path = $(call get-prebuilt-sdk-dir,$(1))/android.jar |
| 1054 | |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1055 | # Resolve LOCAL_SDK_VERSION to prebuilt framework.aidl |
| 1056 | # $(1): An sdk version (LOCAL_SDK_VERSION) |
Anton Hansson | 66d47b8 | 2018-04-27 14:11:17 +0100 | [diff] [blame] | 1057 | resolve-prebuilt-sdk-aidl-path = $(call get-prebuilt-sdk-dir,$(call get-sdk-version,$(1)))/framework.aidl |
Anton Hansson | 400673c | 2018-04-10 16:16:33 +0100 | [diff] [blame] | 1058 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 1059 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 1060 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1061 | # |
| 1062 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 1063 | # on each line for sort to process. |
| 1064 | # sort -g is a numeric sort, so 1 2 3 10 instead of 1 10 2 3. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1065 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 1066 | # Numerically sort a list of numbers |
| 1067 | # $(1): the list of numbers to be sorted |
| 1068 | define numerically_sort |
| 1069 | $(shell function sgrax() { \ |
| 1070 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 1071 | } ; \ |
| 1072 | ( sgrax $(1) | sort -g ) ) |
| 1073 | endef |
| 1074 | |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1075 | # This produces a list like "current/core current/public current/system 4/public" |
| 1076 | TARGET_AVAILABLE_SDK_VERSIONS := $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/*/android.jar) |
| 1077 | TARGET_AVAILABLE_SDK_VERSIONS := $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1078 | # Strips and reorganizes the "public", "core" and "system" subdirs. |
| 1079 | TARGET_AVAILABLE_SDK_VERSIONS := $(subst /public,,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1080 | TARGET_AVAILABLE_SDK_VERSIONS := $(patsubst %/core,core_%,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1081 | TARGET_AVAILABLE_SDK_VERSIONS := $(patsubst %/system,system_%,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1082 | # No prebuilt for test_current. |
| 1083 | TARGET_AVAILABLE_SDK_VERSIONS += test_current |
| 1084 | TARGET_AVAIALBLE_SDK_VERSIONS := $(call numerically_sort,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1085 | |
Colin Cross | f960257 | 2017-10-12 13:34:40 -0700 | [diff] [blame] | 1086 | TARGET_SDK_VERSIONS_WITHOUT_JAVA_18_SUPPORT := $(call numbers_less_than,24,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
Pete Gillin | 5809047 | 2019-05-20 15:41:12 +0100 | [diff] [blame] | 1087 | TARGET_SDK_VERSIONS_WITHOUT_JAVA_19_SUPPORT := $(call numbers_less_than,30,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
Colin Cross | f960257 | 2017-10-12 13:34:40 -0700 | [diff] [blame] | 1088 | |
Mathieu Chartier | 09f3b97 | 2018-03-23 21:57:02 -0700 | [diff] [blame] | 1089 | # Missing optional uses-libraries so that the platform doesn't create build rules that depend on |
Colin Cross | b2a549b | 2019-05-22 10:21:21 -0700 | [diff] [blame] | 1090 | # them. |
| 1091 | INTERNAL_PLATFORM_MISSING_USES_LIBRARIES := \ |
| 1092 | com.google.android.ble \ |
| 1093 | com.google.android.media.effects \ |
| 1094 | com.google.android.wearable \ |
Mathieu Chartier | 09f3b97 | 2018-03-23 21:57:02 -0700 | [diff] [blame] | 1095 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 1096 | # This is the standard way to name a directory containing prebuilt target |
| 1097 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 1098 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Colin Cross | 12d18eb | 2014-05-22 12:01:23 -0700 | [diff] [blame] | 1099 | ifdef TARGET_2ND_ARCH |
| 1100 | TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH) |
| 1101 | endif |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 1102 | |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 1103 | # Set up RS prebuilt variables for compatibility library |
| 1104 | |
Tim Murray | dc1d0ab | 2014-09-30 15:08:03 -0700 | [diff] [blame] | 1105 | RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/librsrt_$(TARGET_ARCH).bc |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 1106 | RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a |
| 1107 | |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 1108 | # API Level lists for Renderscript Compat lib. |
| 1109 | RSCOMPAT_32BIT_ONLY_API_LEVELS := 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Miao Wang | ec27a89 | 2014-11-20 11:05:18 -0800 | [diff] [blame] | 1110 | RSCOMPAT_NO_USAGEIO_API_LEVELS := 8 9 10 11 12 13 |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 1111 | |
Colin Cross | c7bd540 | 2017-10-30 17:31:44 -0700 | [diff] [blame] | 1112 | # Add BUILD_NUMBER to apps default version name if it's unbundled build. |
| 1113 | ifdef TARGET_BUILD_APPS |
| 1114 | TARGET_BUILD_WITH_APPS_VERSION_NAME := true |
| 1115 | endif |
| 1116 | |
| 1117 | ifdef TARGET_BUILD_WITH_APPS_VERSION_NAME |
| 1118 | APPS_DEFAULT_VERSION_NAME := $(PLATFORM_VERSION)-$(BUILD_NUMBER_FROM_FILE) |
| 1119 | else |
| 1120 | APPS_DEFAULT_VERSION_NAME := $(PLATFORM_VERSION) |
| 1121 | endif |
| 1122 | |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 1123 | # ANDROID_WARNING_ALLOWED_PROJECTS is generated by build/soong. |
Chih-Hung Hsieh | bab0488 | 2016-10-11 15:38:39 -0700 | [diff] [blame] | 1124 | define find_warning_allowed_projects |
| 1125 | $(filter $(ANDROID_WARNING_ALLOWED_PROJECTS),$(1)/) |
| 1126 | endef |
| 1127 | |
Colin Cross | 23dcf76 | 2019-11-11 16:04:34 -0800 | [diff] [blame] | 1128 | GOMA_POOL := |
| 1129 | RBE_POOL := |
| 1130 | GOMA_OR_RBE_POOL := |
| 1131 | # When goma or RBE are enabled, kati will be passed --default_pool=local_pool to put |
| 1132 | # most rules into the local pool. Explicitly set the pool to "none" for rules that |
| 1133 | # should be run outside the local pool, i.e. with -j500. |
| 1134 | ifneq (,$(filter-out false,$(USE_GOMA))) |
| 1135 | GOMA_POOL := none |
| 1136 | GOMA_OR_RBE_POOL := none |
| 1137 | else ifneq (,$(filter-out false,$(USE_RBE))) |
| 1138 | RBE_POOL := none |
| 1139 | GOMA_OR_RBE_POOL := none |
| 1140 | endif |
| 1141 | .KATI_READONLY := GOMA_POOL RBE_POOL GOMA_OR_RBE_POOL |
| 1142 | |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 1143 | # These goals don't need to collect and include Android.mks/CleanSpec.mks |
| 1144 | # in the source tree. |
Dan Willemsen | 0f2ab46 | 2017-05-18 13:42:40 -0700 | [diff] [blame] | 1145 | dont_bother_goals := out \ |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 1146 | product-graph dump-products |
| 1147 | |
Dan Willemsen | 20f99a6 | 2017-10-12 01:35:14 -0700 | [diff] [blame] | 1148 | ifeq ($(CALLED_FROM_SETUP),true) |
Bill Peckham | 48ae71a | 2020-07-22 17:59:34 -0700 | [diff] [blame] | 1149 | include $(BUILD_SYSTEM)/android_soong_config_vars.mk |
Dan Willemsen | 04f53ed | 2016-11-09 17:22:15 -0800 | [diff] [blame] | 1150 | include $(BUILD_SYSTEM)/ninja_config.mk |
Dan Willemsen | 04f53ed | 2016-11-09 17:22:15 -0800 | [diff] [blame] | 1151 | include $(BUILD_SYSTEM)/soong_config.mk |
| 1152 | endif |
| 1153 | |
Nelson Li | 1f8357f | 2019-03-14 01:04:05 +0000 | [diff] [blame] | 1154 | -include external/linux-kselftest/android/kselftest_test_list.mk |
| 1155 | -include external/ltp/android/ltp_package_list.mk |
| 1156 | DEFAULT_DATA_OUT_MODULES := ltp $(ltp_packages) $(kselftest_modules) |
Sasha Smundak | da25b69 | 2019-03-25 13:26:03 -0700 | [diff] [blame] | 1157 | .KATI_READONLY := DEFAULT_DATA_OUT_MODULES |
Nelson Li | 1f8357f | 2019-03-14 01:04:05 +0000 | [diff] [blame] | 1158 | |
Bob Badour | 2441181 | 2020-05-20 07:08:09 -0700 | [diff] [blame] | 1159 | # Make RECORD_ALL_DEPS readonly. |
| 1160 | RECORD_ALL_DEPS :=$= $(filter true,$(RECORD_ALL_DEPS)) |
Bill Peckham | a2c6345 | 2020-04-21 17:00:34 -0700 | [diff] [blame] | 1161 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 1162 | include $(BUILD_SYSTEM)/dumpvar.mk |