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 | |
Ying Wang | 6714dbc | 2010-03-30 16:42:15 -0700 | [diff] [blame] | 20 | # Only use ANDROID_BUILD_SHELL to wrap around bash. |
| 21 | # DO NOT use other shells such as zsh. |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 22 | ifdef ANDROID_BUILD_SHELL |
| 23 | SHELL := $(ANDROID_BUILD_SHELL) |
| 24 | else |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 25 | # Use bash, not whatever shell somebody has installed as /bin/sh |
| 26 | # This is repeated from main.mk, since envsetup.sh runs this file |
| 27 | # directly. |
| 28 | SHELL := /bin/bash |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 29 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 30 | |
Ying Wang | 157a5e1 | 2012-09-27 13:26:25 -0700 | [diff] [blame] | 31 | # Utility variables. |
| 32 | empty := |
| 33 | space := $(empty) $(empty) |
| 34 | comma := , |
Ying Wang | 58a5db3 | 2014-10-03 11:36:27 -0700 | [diff] [blame] | 35 | # Note that make will eat the newline just before endef. |
| 36 | define newline |
| 37 | |
| 38 | |
| 39 | endef |
Ying Wang | 127da9e | 2015-09-22 14:37:53 -0700 | [diff] [blame] | 40 | # The pound character "#" |
| 41 | define pound |
| 42 | # |
| 43 | endef |
Ying Wang | 58a5db3 | 2014-10-03 11:36:27 -0700 | [diff] [blame] | 44 | # Unfortunately you can't simply define backslash as \ or \\. |
| 45 | backslash := \a |
| 46 | backslash := $(patsubst %a,%,$(backslash)) |
Ying Wang | 157a5e1 | 2012-09-27 13:26:25 -0700 | [diff] [blame] | 47 | |
Dan Willemsen | 11677ed | 2018-03-28 14:33:10 -0700 | [diff] [blame] | 48 | # Prevent accidentally changing these variables |
| 49 | .KATI_READONLY := SHELL empty space comma newline pound backslash |
| 50 | |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 51 | # this turns off the suffix rules built into make |
| 52 | .SUFFIXES: |
| 53 | |
| 54 | # this turns off the RCS / SCCS implicit rules of GNU Make |
| 55 | % : RCS/%,v |
| 56 | % : RCS/% |
| 57 | % : %,v |
| 58 | % : s.% |
| 59 | % : SCCS/s.% |
| 60 | |
| 61 | # If a rule fails, delete $@. |
| 62 | .DELETE_ON_ERROR: |
| 63 | |
Dan Willemsen | 11677ed | 2018-03-28 14:33:10 -0700 | [diff] [blame] | 64 | # Mark variables that should be coming as environment variables from soong_ui |
| 65 | # as readonly |
| 66 | .KATI_READONLY := OUT_DIR TMPDIR BUILD_DATETIME_FILE |
| 67 | |
Dan Willemsen | 2ec3e4a | 2017-10-30 13:41:53 -0700 | [diff] [blame] | 68 | # Mark variables deprecated/obsolete |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 69 | CHANGES_URL := https://android.googlesource.com/platform/build/+/master/Changes.md |
Dan Willemsen | 74afb1d | 2017-12-27 16:57:34 -0800 | [diff] [blame] | 70 | $(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] | 71 | $(KATI_obsolete_var PYTHONPATH,Do not use PYTHONPATH directly. See $(CHANGES_URL)#PYTHONPATH) |
| 72 | $(KATI_obsolete_var OUT,Use OUT_DIR instead. See $(CHANGES_URL)#OUT) |
| 73 | $(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] | 74 | $(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] | 75 | $(KATI_obsolete_var ANDROID_HOST_OUT_TESTCASES,Use HOST_OUT_TESTCASES instead. See $(CHANGES_URL)#ANDROID_HOST_OUT_TESTCASES) |
| 76 | $(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] | 77 | $(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] | 78 | $(KATI_obsolete_var \ |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 79 | ANDROID_TOOLCHAIN \ |
| 80 | ANDROID_TOOLCHAIN_2ND_ARCH \ |
| 81 | ANDROID_DEV_SCRIPTS \ |
| 82 | ANDROID_EMULATOR_PREBUILTS \ |
| 83 | ANDROID_PRE_BUILD_PATHS \ |
| 84 | ,See $(CHANGES_URL)#other_envsetup_variables) |
Yifan Hong | 6ce074f | 2017-12-12 18:01:09 -0800 | [diff] [blame] | 85 | $(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] | 86 | $(KATI_obsolete_var USE_CLANG_PLATFORM_BUILD,Clang is the only supported Android compiler. See $(CHANGES_URL)#USE_CLANG_PLATFORM_BUILD) |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 87 | |
Dan Willemsen | 8b9c3cc | 2018-02-27 02:15:32 -0800 | [diff] [blame] | 88 | # This is marked as obsolete in envsetup.mk after reading the BoardConfig.mk |
| 89 | $(KATI_deprecate_export It is a global setting. See $(CHANGES_URL)#export_keyword) |
| 90 | |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 91 | CHANGES_URL := |
Dan Willemsen | 2ec3e4a | 2017-10-30 13:41:53 -0700 | [diff] [blame] | 92 | |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 93 | # Used to force goals to build. Only use for conditionally defined goals. |
| 94 | .PHONY: FORCE |
| 95 | FORCE: |
| 96 | |
| 97 | ORIGINAL_MAKECMDGOALS := $(MAKECMDGOALS) |
| 98 | |
Jayant Chowdhary | 85fbcf4 | 2017-11-27 15:01:02 -0800 | [diff] [blame] | 99 | dist_goal := $(strip $(filter dist,$(MAKECMDGOALS))) |
| 100 | MAKECMDGOALS := $(strip $(filter-out dist,$(MAKECMDGOALS))) |
| 101 | |
Dan Willemsen | ce7f8dd | 2017-07-25 00:57:38 -0700 | [diff] [blame] | 102 | UNAME := $(shell uname -sm) |
| 103 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 104 | SRC_TARGET_DIR := $(TOPDIR)build/target |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 105 | |
| 106 | # Some specific paths to tools |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 107 | SRC_DROIDDOC_DIR := $(TOPDIR)build/make/tools/droiddoc |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 108 | |
Dan Willemsen | 92afd7d | 2018-05-02 00:15:41 -0700 | [diff] [blame] | 109 | # Mark some inputs as readonly |
| 110 | ifdef TARGET_DEVICE_DIR |
| 111 | .KATI_READONLY := TARGET_DEVICE_DIR |
| 112 | endif |
| 113 | |
Steven Moreland | a64f336 | 2017-05-31 12:48:55 -0700 | [diff] [blame] | 114 | # Set up efficient math functions which are used in make. |
| 115 | # Here since this file is included by envsetup as well as during build. |
| 116 | include $(BUILD_SYSTEM)/math.mk |
| 117 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 118 | # Various mappings to avoid hard-coding paths all over the place |
| 119 | include $(BUILD_SYSTEM)/pathmap.mk |
| 120 | |
Alan Viverette | fa0184f | 2018-02-15 11:26:31 -0500 | [diff] [blame] | 121 | # Allow projects to define their own globally-available variables |
| 122 | include $(BUILD_SYSTEM)/project_definitions.mk |
| 123 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 124 | # ############################################################### |
| 125 | # Build system internal files |
| 126 | # ############################################################### |
| 127 | |
| 128 | BUILD_COMBOS:= $(BUILD_SYSTEM)/combo |
| 129 | |
| 130 | CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk |
| 131 | BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk |
| 132 | BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk |
| 133 | BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk |
Dan Willemsen | 8dae49c | 2017-02-15 15:48:11 -0800 | [diff] [blame] | 134 | BUILD_HEADER_LIBRARY:= $(BUILD_SYSTEM)/header_library.mk |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 135 | BUILD_AUX_STATIC_LIBRARY:= $(BUILD_SYSTEM)/aux_static_library.mk |
| 136 | BUILD_AUX_EXECUTABLE:= $(BUILD_SYSTEM)/aux_executable.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 137 | BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk |
| 138 | BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 139 | BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk |
| 140 | BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk |
Dima Zavin | f625bf2 | 2010-09-16 00:25:16 -0700 | [diff] [blame] | 141 | BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk |
Jakub Adamek | a08a101 | 2016-10-03 09:56:16 +0100 | [diff] [blame] | 142 | BUILD_RRO_PACKAGE:= $(BUILD_SYSTEM)/build_rro_package.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 143 | BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 144 | BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk |
| 145 | BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 146 | BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk |
| 147 | BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk |
| 148 | BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk |
| 149 | BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk |
Alan Viverette | 6210536 | 2017-07-13 17:10:15 -0400 | [diff] [blame] | 150 | BUILD_APIDIFF:= $(BUILD_SYSTEM)/apidiff.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 151 | BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 152 | BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk |
Colin Cross | 52a341b | 2013-11-15 14:37:23 -0800 | [diff] [blame] | 153 | BUILD_NATIVE_BENCHMARK := $(BUILD_SYSTEM)/native_benchmark.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 154 | BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk |
Dan Albert | 36b6f04 | 2015-07-30 16:56:30 -0700 | [diff] [blame] | 155 | BUILD_FUZZ_TEST := $(BUILD_SYSTEM)/fuzz_test.mk |
| 156 | BUILD_HOST_FUZZ_TEST := $(BUILD_SYSTEM)/host_fuzz_test.mk |
Christopher Ferris | 70ca5e5 | 2014-02-04 22:09:16 -0800 | [diff] [blame] | 157 | |
| 158 | BUILD_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/shared_test_lib.mk |
| 159 | BUILD_HOST_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/host_shared_test_lib.mk |
| 160 | BUILD_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/static_test_lib.mk |
| 161 | BUILD_HOST_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/host_static_test_lib.mk |
| 162 | |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 163 | BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk |
Narayan Kamath | 0dd273a | 2013-10-28 13:20:52 +0000 | [diff] [blame] | 164 | BUILD_HOST_DALVIK_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_java_library.mk |
| 165 | BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk |
| 166 | |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 167 | BUILD_HOST_TEST_CONFIG := $(BUILD_SYSTEM)/host_test_config.mk |
| 168 | BUILD_TARGET_TEST_CONFIG := $(BUILD_SYSTEM)/target_test_config.mk |
| 169 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 170 | # ############################################################### |
| 171 | # Parse out any modifier targets. |
| 172 | # ############################################################### |
| 173 | |
Dan Willemsen | 562bacc | 2017-05-25 22:10:08 -0700 | [diff] [blame] | 174 | hide := @ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 175 | |
Ying Wang | a174261 | 2015-10-28 14:33:40 -0700 | [diff] [blame] | 176 | ################################################################ |
| 177 | # Tools needed in product configuration makefiles. |
| 178 | ################################################################ |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 179 | NORMALIZE_PATH := build/make/tools/normalize_path.py |
Ying Wang | a174261 | 2015-10-28 14:33:40 -0700 | [diff] [blame] | 180 | |
| 181 | # $(1): the paths to be normalized |
| 182 | define normalize-paths |
| 183 | $(if $(1),$(shell $(NORMALIZE_PATH) $(1))) |
| 184 | endef |
| 185 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 186 | # ############################################################### |
| 187 | # Set common values |
| 188 | # ############################################################### |
| 189 | |
Dan Willemsen | eaacf5b | 2018-03-13 00:04:48 -0700 | [diff] [blame] | 190 | # Initialize SOONG_CONFIG_NAMESPACES so that it isn't recursive. |
| 191 | SOONG_CONFIG_NAMESPACES := |
| 192 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 193 | # Set the extensions used for various packages |
| 194 | COMMON_PACKAGE_SUFFIX := .zip |
| 195 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 196 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 197 | |
Yohann Roussel | f528e13 | 2015-03-13 12:08:26 +0100 | [diff] [blame] | 198 | ifdef TMPDIR |
| 199 | JAVA_TMPDIR_ARG := -Djava.io.tmpdir=$(TMPDIR) |
| 200 | else |
| 201 | JAVA_TMPDIR_ARG := |
| 202 | endif |
| 203 | |
Przemyslaw Szczepaniak | bd613de | 2018-02-22 16:35:12 +0000 | [diff] [blame] | 204 | # Default to remove the org.apache.http.legacy from bootclasspath |
| 205 | ifeq ($(REMOVE_OAHL_FROM_BCP),) |
| 206 | REMOVE_OAHL_FROM_BCP := true |
| 207 | endif |
| 208 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 209 | # ############################################################### |
Dan Willemsen | ac406f5 | 2018-04-04 21:37:42 -0700 | [diff] [blame] | 210 | # Broken build defaults |
| 211 | # ############################################################### |
Dan Willemsen | 94bff7a | 2018-06-21 09:46:01 -0700 | [diff] [blame] | 212 | BUILD_BROKEN_ANDROIDMK_EXPORTS := |
| 213 | BUILD_BROKEN_DUP_COPY_HEADERS := |
| 214 | BUILD_BROKEN_DUP_RULES := |
| 215 | BUILD_BROKEN_PHONY_TARGETS := |
Dan Willemsen | ac406f5 | 2018-04-04 21:37:42 -0700 | [diff] [blame] | 216 | |
| 217 | # ############################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 218 | # Include sub-configuration files |
| 219 | # ############################################################### |
| 220 | |
| 221 | # --------------------------------------------------------------- |
| 222 | # Try to include buildspec.mk, which will try to set stuff up. |
Brian Carlstrom | 1aeee8b | 2013-06-27 12:02:46 -0700 | [diff] [blame] | 223 | # 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] | 224 | # be used, and if that doesn't work, then the default is an |
| 225 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 226 | ifndef ANDROID_BUILDSPEC |
| 227 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 228 | endif |
| 229 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 230 | |
| 231 | # --------------------------------------------------------------- |
| 232 | # Define most of the global variables. These are the ones that |
| 233 | # are specific to the user's build configuration. |
| 234 | include $(BUILD_SYSTEM)/envsetup.mk |
| 235 | |
C. Sean Young | cf46998 | 2015-06-09 12:35:45 -0500 | [diff] [blame] | 236 | # Pruned directory options used when using findleaves.py |
| 237 | # See envsetup.mk for a description of SCAN_EXCLUDE_DIRS |
Colin Cross | ae58e2b | 2016-10-04 16:21:49 -0700 | [diff] [blame] | 238 | FIND_LEAVES_EXCLUDES := $(addprefix --prune=, $(SCAN_EXCLUDE_DIRS) .repo .git) |
C. Sean Young | cf46998 | 2015-06-09 12:35:45 -0500 | [diff] [blame] | 239 | |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 240 | # The build system exposes several variables for where to find the kernel |
| 241 | # headers: |
| 242 | # TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current |
| 243 | # device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers, |
| 244 | # e.g. device/samsung/tuna/kernel-headers. This directory is not |
| 245 | # explicitly set by anyone, the build system always adds this subdir. |
| 246 | # |
| 247 | # TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file |
| 248 | # to allow other directories to be included. This is useful if there's |
| 249 | # some common place where a few headers are being kept for a group |
| 250 | # of devices. For example, device/<vendor>/common/kernel-headers could |
| 251 | # contain some headers for several of <vendor>'s devices. |
| 252 | # |
| 253 | # TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance |
| 254 | # graph. This allows architecture products to provide headers for the |
| 255 | # devices using that architecture. For example, |
| 256 | # hardware/ti/omap4xxx/omap4.mk will specify |
| 257 | # PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4 |
| 258 | # specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers. |
| 259 | # The build system then combines all the values specified by all the |
| 260 | # PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance |
| 261 | # tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable. |
| 262 | # |
| 263 | # The layout of subdirs in any of the kernel-headers dir should mirror the |
| 264 | # layout of the kernel include/ directory. For example, |
| 265 | # device/samsung/tuna/kernel-headers/linux/, |
| 266 | # hardware/ti/omap4xxx/kernel-headers/media/, |
| 267 | # etc. |
| 268 | # |
| 269 | # NOTE: These directories MUST contain post-processed headers using the |
Alex Deymo | be0e7c9 | 2016-04-22 10:18:15 -0700 | [diff] [blame] | 270 | # bionic/libc/kernel/tools/clean_header.py tool. Additionally, the original |
| 271 | # 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] | 272 | # convention, the originals should be checked into original-kernel-headers |
| 273 | # directory of the same parent dir. For example, |
| 274 | # device/samsung/tuna/kernel-headers <----- post-processed |
| 275 | # device/samsung/tuna/original-kernel-headers <----- originals |
| 276 | # |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 277 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 278 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 279 | define validate-kernel-headers |
| 280 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 281 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 282 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 283 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 284 | # also allow the board config to provide additional directories since |
| 285 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 286 | # that both are valid devices but derived_hw needs to use kernel headers |
| 287 | # from base_hw. |
| 288 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 289 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 290 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 291 | |
| 292 | # then add product-inherited includes, to allow for |
| 293 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 294 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 295 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 296 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 297 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 298 | # Clean up/verify variables defined by the board config file. |
| 299 | TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) |
| 300 | TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI)) |
| 301 | ifeq ($(TARGET_CPU_ABI),) |
| 302 | $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk)) |
| 303 | endif |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 304 | TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2)) |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 305 | |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 306 | BOARD_KERNEL_BASE := $(strip $(BOARD_KERNEL_BASE)) |
| 307 | BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE)) |
| 308 | |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 309 | # Commands to generate .toc file common to ELF .so files. |
| 310 | define _gen_toc_command_for_elf |
Shinichiro Hamaji | f0972f7 | 2015-11-05 12:51:08 +0900 | [diff] [blame] | 311 | $(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] | 312 | $(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] | 313 | endef |
| 314 | |
| 315 | # Commands to generate .toc file from Darwin dynamic library. |
| 316 | define _gen_toc_command_for_macho |
Dan Willemsen | 0c31654 | 2018-06-03 16:20:08 -0700 | [diff] [blame] | 317 | $(hide) $(HOST_OTOOL) -l $(1) | grep LC_ID_DYLIB -A 5 > $(2) |
| 318 | $(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] | 319 | endef |
| 320 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 321 | combo_target := HOST_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 322 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 323 | include $(BUILD_SYSTEM)/combo/select.mk |
| 324 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 325 | # Load the 2nd host arch if it's needed. |
| 326 | ifdef HOST_2ND_ARCH |
| 327 | combo_target := HOST_ |
| 328 | combo_2nd_arch_prefix := $(HOST_2ND_ARCH_VAR_PREFIX) |
| 329 | include $(BUILD_SYSTEM)/combo/select.mk |
| 330 | endif |
| 331 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 332 | # Load the windows cross compiler under Linux |
| 333 | ifdef HOST_CROSS_OS |
| 334 | combo_target := HOST_CROSS_ |
| 335 | combo_2nd_arch_prefix := |
| 336 | include $(BUILD_SYSTEM)/combo/select.mk |
Dan Willemsen | 9ecbf83 | 2016-02-05 16:20:19 -0800 | [diff] [blame] | 337 | |
| 338 | ifdef HOST_CROSS_2ND_ARCH |
| 339 | combo_target := HOST_CROSS_ |
| 340 | combo_2nd_arch_prefix := $(HOST_CROSS_2ND_ARCH_VAR_PREFIX) |
| 341 | include $(BUILD_SYSTEM)/combo/select.mk |
| 342 | endif |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 343 | endif |
| 344 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 345 | # on windows, the tools have .exe at the end, and we depend on the |
| 346 | # host config stuff being done first |
| 347 | |
| 348 | combo_target := TARGET_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 349 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 350 | include $(BUILD_SYSTEM)/combo/select.mk |
| 351 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 352 | # Load the 2nd target arch if it's needed. |
| 353 | ifdef TARGET_2ND_ARCH |
| 354 | combo_target := TARGET_ |
| 355 | combo_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX) |
| 356 | include $(BUILD_SYSTEM)/combo/select.mk |
| 357 | endif |
| 358 | |
Dan Willemsen | 20f99a6 | 2017-10-12 01:35:14 -0700 | [diff] [blame] | 359 | ifeq ($(CALLED_FROM_SETUP),true) |
Ying Wang | 57d9060 | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 360 | include $(BUILD_SYSTEM)/ccache.mk |
Shinichiro Hamaji | ee482fd | 2015-08-17 17:38:24 +0900 | [diff] [blame] | 361 | include $(BUILD_SYSTEM)/goma.mk |
Colin Cross | 44005d4 | 2016-08-31 13:32:39 -0700 | [diff] [blame] | 362 | endif |
Colin Cross | 5a5befb | 2016-08-31 09:35:32 -0700 | [diff] [blame] | 363 | |
Colin Cross | a3339e9 | 2014-04-30 18:09:13 -0700 | [diff] [blame] | 364 | ifdef TARGET_PREFER_32_BIT |
| 365 | TARGET_PREFER_32_BIT_APPS := true |
| 366 | TARGET_PREFER_32_BIT_EXECUTABLES := true |
| 367 | endif |
| 368 | |
Anton Hansson | 133fcb2 | 2018-06-28 13:31:02 +0100 | [diff] [blame] | 369 | ifeq (,$(filter true,$(TARGET_SUPPORTS_32_BIT_APPS) $(TARGET_SUPPORTS_64_BIT_APPS))) |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 370 | TARGET_SUPPORTS_32_BIT_APPS := true |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 371 | endif |
| 372 | |
Anton Hansson | 133fcb2 | 2018-06-28 13:31:02 +0100 | [diff] [blame] | 373 | # Sanity check to warn about likely cryptic errors later in the build. |
| 374 | ifeq ($(TARGET_IS_64_BIT),true) |
| 375 | ifeq (,$(filter true false,$(TARGET_SUPPORTS_64_BIT_APPS))) |
| 376 | $(warning Building a 32-bit-app-only product on a 64-bit device. \ |
| 377 | If this is intentional, set TARGET_SUPPORTS_64_BIT_APPS := false) |
| 378 | endif |
| 379 | endif |
| 380 | |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 381 | # "ro.product.cpu.abilist32" and "ro.product.cpu.abilist64" are |
| 382 | # comma separated lists of the 32 and 64 bit ABIs (in order of |
| 383 | # preference) that the target supports. If TARGET_CPU_ABI_LIST_{32,64}_BIT |
| 384 | # are defined by the board config, we use them. Else, we construct |
| 385 | # these lists based on whether TARGET_IS_64_BIT is set. |
| 386 | # |
| 387 | # Note that this assumes that the 2ND_CPU_ABI for a 64 bit target |
| 388 | # is always 32 bits. If this isn't the case, these variables should |
Brian Carlstrom | d795046 | 2014-06-16 16:51:42 -0700 | [diff] [blame] | 389 | # be overriden in the board configuration. |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 390 | ifeq (,$(TARGET_CPU_ABI_LIST_64_BIT)) |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 391 | ifeq (true|true,$(TARGET_IS_64_BIT)|$(TARGET_SUPPORTS_64_BIT_APPS)) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 392 | TARGET_CPU_ABI_LIST_64_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 393 | endif |
| 394 | endif |
| 395 | |
| 396 | ifeq (,$(TARGET_CPU_ABI_LIST_32_BIT)) |
| 397 | ifneq (true,$(TARGET_IS_64_BIT)) |
| 398 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 399 | else |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 400 | ifeq (true,$(TARGET_SUPPORTS_32_BIT_APPS)) |
| 401 | # For a 64 bit target, assume that the 2ND_CPU_ABI |
| 402 | # is a 32 bit ABI. |
| 403 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_2ND_CPU_ABI) $(TARGET_2ND_CPU_ABI2) |
| 404 | endif |
| 405 | endif |
| 406 | endif |
| 407 | |
| 408 | # "ro.product.cpu.abilist" is a comma separated list of ABIs (in order |
| 409 | # of preference) that the target supports. If a TARGET_CPU_ABI_LIST |
| 410 | # is specified by the board configuration, we use that. If not, we |
| 411 | # build a list out of the TARGET_CPU_ABIs specified by the config. |
| 412 | ifeq (,$(TARGET_CPU_ABI_LIST)) |
| 413 | ifeq ($(TARGET_IS_64_BIT)|$(TARGET_PREFER_32_BIT_APPS),true|true) |
| 414 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_32_BIT) $(TARGET_CPU_ABI_LIST_64_BIT) |
| 415 | else |
| 416 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_64_BIT) $(TARGET_CPU_ABI_LIST_32_BIT) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 417 | endif |
| 418 | endif |
| 419 | |
| 420 | # Strip whitespace from the ABI list string. |
| 421 | TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST))) |
| 422 | TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT))) |
| 423 | TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT))) |
| 424 | |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 425 | # GCC version selection |
| 426 | TARGET_GCC_VERSION := 4.9 |
| 427 | ifdef TARGET_2ND_ARCH |
| 428 | 2ND_TARGET_GCC_VERSION := 4.9 |
| 429 | endif |
| 430 | |
Dan Willemsen | e68100e | 2016-09-26 17:37:19 -0700 | [diff] [blame] | 431 | # Normalize WITH_STATIC_ANALYZER |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 432 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),0) |
| 433 | WITH_STATIC_ANALYZER := |
| 434 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 435 | |
Chih-Hung Hsieh | a9a55c7 | 2016-03-31 16:30:23 -0700 | [diff] [blame] | 436 | # Unset WITH_TIDY_ONLY if global WITH_TIDY_ONLY is not true nor 1. |
| 437 | ifeq (,$(filter 1 true,$(WITH_TIDY_ONLY))) |
| 438 | WITH_TIDY_ONLY := |
| 439 | endif |
| 440 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 441 | # Pick a Java compiler. |
| 442 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 443 | |
| 444 | # --------------------------------------------------------------- |
| 445 | # Check that the configuration is current. We check that |
| 446 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 447 | # Don't fail if we're called from envsetup, so they have a |
| 448 | # chance to update their environment. |
| 449 | |
| 450 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 451 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 452 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 453 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 454 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 455 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 456 | $(info *** - Re-run lunch or choosecombo) |
| 457 | $(info *** If you use buildspec.mk:) |
| 458 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 459 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 460 | $(error bailing..) |
| 461 | endif |
| 462 | endif |
| 463 | endif |
| 464 | |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 465 | # Set up PDK so we can use TARGET_BUILD_PDK to select prebuilt tools below |
| 466 | .PHONY: pdk fusion |
| 467 | pdk fusion: $(DEFAULT_GOAL) |
| 468 | |
| 469 | # What to build: |
| 470 | # pdk fusion if: |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 471 | # 1) PDK_FUSION_PLATFORM_ZIP / PDK_FUSION_PLATFORM_DIR is passed in from the environment |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 472 | # or |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 473 | # 2) the platform.zip / pdk.mk exists in the default location |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 474 | # or |
| 475 | # 3) fusion is a command line build goal, |
| 476 | # PDK_FUSION_PLATFORM_ZIP is needed anyway, then do we need the 'fusion' goal? |
| 477 | # otherwise pdk only if: |
| 478 | # 1) pdk is a command line build goal |
| 479 | # or |
| 480 | # 2) TARGET_BUILD_PDK is passed in from the environment |
| 481 | |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 482 | # if PDK_FUSION_PLATFORM_ZIP or PDK_FUSION_PLATFORM_DIR is specified, do not override. |
| 483 | ifeq (,$(strip $(PDK_FUSION_PLATFORM_ZIP)$(PDK_FUSION_PLATFORM_DIR))) |
| 484 | # Most PDK project paths should be using vendor/pdk/TARGET_DEVICE |
| 485 | # but some legacy ones (e.g. mini_armv7a_neon generic PDK) were setup |
| 486 | # with vendor/pdk/TARGET_PRODUCT. |
| 487 | # Others are set up with vendor/pdk/TARGET_DEVICE/TARGET_DEVICE-userdebug |
| 488 | _pdk_fusion_search_paths := \ |
| 489 | vendor/pdk/$(TARGET_DEVICE)/$(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)/platform \ |
| 490 | vendor/pdk/$(TARGET_DEVICE)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform \ |
| 491 | vendor/pdk/$(TARGET_DEVICE)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform \ |
| 492 | vendor/pdk/$(TARGET_PRODUCT)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform \ |
| 493 | vendor/pdk/$(TARGET_PRODUCT)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform |
| 494 | |
| 495 | _pdk_fusion_default_platform_zip := $(strip $(foreach p,$(_pdk_fusion_search_paths),$(wildcard $(p)/platform.zip))) |
| 496 | ifneq (,$(_pdk_fusion_default_platform_zip)) |
| 497 | PDK_FUSION_PLATFORM_ZIP := $(word 1, $(_pdk_fusion_default_platform_zip)) |
| 498 | _pdk_fusion_default_platform_zip := |
| 499 | else |
| 500 | _pdk_fusion_default_platform_mk := $(strip $(foreach p,$(_pdk_fusion_search_paths),$(wildcard $(p)/pdk.mk))) |
| 501 | ifneq (,$(_pdk_fusion_default_platform_mk)) |
| 502 | PDK_FUSION_PLATFORM_DIR := $(dir $(word 1,$(_pdk_fusion_default_platform_mk))) |
| 503 | _pdk_fusion_default_platform_mk := |
| 504 | endif |
| 505 | endif # _pdk_fusion_default_platform_zip |
| 506 | _pdk_fusion_search_paths := |
| 507 | endif # !PDK_FUSION_PLATFORM_ZIP && !PDK_FUSION_PLATFORM_DIR |
| 508 | |
| 509 | ifneq (,$(PDK_FUSION_PLATFORM_ZIP)) |
| 510 | ifneq (,$(PDK_FUSION_PLATFORM_DIR)) |
| 511 | $(error Only one of PDK_FUSION_PLATFORM_ZIP or PDK_FUSION_PLATFORM_DIR may be specified) |
| 512 | endif |
| 513 | endif |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 514 | |
| 515 | ifneq (,$(filter pdk fusion, $(MAKECMDGOALS))) |
| 516 | TARGET_BUILD_PDK := true |
| 517 | ifneq (,$(filter fusion, $(MAKECMDGOALS))) |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 518 | ifeq (,$(strip $(PDK_FUSION_PLATFORM_ZIP)$(PDK_FUSION_PLATFORM_DIR))) |
| 519 | $(error Specify PDK_FUSION_PLATFORM_ZIP or PDK_FUSION_PLATFORM_DIR to do a PDK fusion.) |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 520 | endif |
| 521 | endif # fusion |
| 522 | endif # pdk or fusion |
| 523 | |
| 524 | ifdef PDK_FUSION_PLATFORM_ZIP |
| 525 | TARGET_BUILD_PDK := true |
| 526 | ifeq (,$(wildcard $(PDK_FUSION_PLATFORM_ZIP))) |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 527 | ifneq (,$(wildcard $(dir $(PDK_FUSION_PLATFORM_ZIP))/pdk.mk)) |
| 528 | PDK_FUSION_PLATFORM_DIR := $(dir $(PDK_FUSION_PLATFORM_ZIP)) |
| 529 | PDK_FUSION_PLATFORM_ZIP := |
| 530 | else |
| 531 | $(error Cannot find file $(PDK_FUSION_PLATFORM_ZIP).) |
| 532 | endif |
| 533 | endif |
| 534 | endif |
| 535 | |
| 536 | ifdef PDK_FUSION_PLATFORM_DIR |
| 537 | TARGET_BUILD_PDK := true |
| 538 | ifeq (,$(wildcard $(PDK_FUSION_PLATFORM_DIR)/pdk.mk)) |
| 539 | $(error Cannot find file $(PDK_FUSION_PLATFORM_DIR)/pdk.mk.) |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 540 | endif |
| 541 | endif |
| 542 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 543 | BUILD_PLATFORM_ZIP := $(filter platform platform-java,$(MAKECMDGOALS)) |
| 544 | |
Dan Willemsen | ccc4816 | 2017-06-02 15:25:20 -0700 | [diff] [blame] | 545 | # --------------------------------------------------------------- |
| 546 | # Whether we can expect a full build graph |
| 547 | ALLOW_MISSING_DEPENDENCIES := $(filter true,$(ALLOW_MISSING_DEPENDENCIES)) |
| 548 | ifneq ($(TARGET_BUILD_APPS),) |
| 549 | ALLOW_MISSING_DEPENDENCIES := true |
| 550 | endif |
| 551 | ifeq ($(TARGET_BUILD_PDK),true) |
| 552 | ALLOW_MISSING_DEPENDENCIES := true |
| 553 | endif |
| 554 | ifneq ($(filter true,$(SOONG_ALLOW_MISSING_DEPENDENCIES)),) |
| 555 | ALLOW_MISSING_DEPENDENCIES := true |
| 556 | endif |
| 557 | ifneq ($(ONE_SHOT_MAKEFILE),) |
| 558 | ALLOW_MISSING_DEPENDENCIES := true |
| 559 | endif |
| 560 | .KATI_READONLY := ALLOW_MISSING_DEPENDENCIES |
| 561 | |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 562 | prebuilt_sdk_tools := prebuilts/sdk/tools |
| 563 | prebuilt_sdk_tools_bin := $(prebuilt_sdk_tools)/$(HOST_OS)/bin |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 564 | |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 565 | # Always use prebuilts for ckati and makeparallel |
| 566 | prebuilt_build_tools := prebuilts/build-tools |
| 567 | prebuilt_build_tools_wrappers := prebuilts/build-tools/common/bin |
| 568 | prebuilt_build_tools_jars := prebuilts/build-tools/common/framework |
Dan Willemsen | 3de78fd | 2018-05-25 16:13:52 -0700 | [diff] [blame] | 569 | prebuilt_build_tools_bin_noasan := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/bin |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 570 | ifeq ($(filter address,$(SANITIZE_HOST)),) |
Dan Willemsen | 3de78fd | 2018-05-25 16:13:52 -0700 | [diff] [blame] | 571 | prebuilt_build_tools_bin := $(prebuilt_build_tools_bin_noasan) |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 572 | else |
| 573 | prebuilt_build_tools_bin := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/asan/bin |
| 574 | endif |
| 575 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 576 | USE_PREBUILT_SDK_TOOLS_IN_PLACE := true |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 577 | |
Alan Leung | 65168a4 | 2017-11-01 17:49:52 -0700 | [diff] [blame] | 578 | # Work around for b/68406220 |
| 579 | # This should match the soong version. |
Colin Cross | cf01085 | 2018-06-06 21:46:25 +0000 | [diff] [blame] | 580 | USE_D8 := true |
Colin Cross | e938175 | 2018-06-19 10:23:50 -0700 | [diff] [blame] | 581 | .KATI_READONLY := USE_D8 |
Alan Leung | 65168a4 | 2017-11-01 17:49:52 -0700 | [diff] [blame] | 582 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 583 | # |
| 584 | # Tools that are prebuilts for TARGET_BUILD_APPS |
| 585 | # |
| 586 | ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) |
| 587 | AIDL := $(HOST_OUT_EXECUTABLES)/aidl |
| 588 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt |
| 589 | AAPT2 := $(HOST_OUT_EXECUTABLES)/aapt2 |
| 590 | MAINDEXCLASSES := $(HOST_OUT_EXECUTABLES)/mainDexClasses |
| 591 | SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 592 | SIGNAPK_JNI_LIBRARY_PATH := $(HOST_OUT_SHARED_LIBRARIES) |
| 593 | ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign |
Colin Cross | e44e75a | 2017-07-18 05:22:59 +0000 | [diff] [blame] | 594 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 595 | else # TARGET_BUILD_APPS || TARGET_BUILD_PDK |
Dan Willemsen | 6353304 | 2017-11-17 18:39:55 -0800 | [diff] [blame] | 596 | AIDL := $(prebuilt_build_tools_bin)/aidl |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 597 | AAPT := $(prebuilt_sdk_tools_bin)/aapt |
| 598 | AAPT2 := $(prebuilt_sdk_tools_bin)/aapt2 |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 599 | MAINDEXCLASSES := $(prebuilt_sdk_tools)/mainDexClasses |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 600 | SIGNAPK_JAR := $(prebuilt_sdk_tools)/lib/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 601 | SIGNAPK_JNI_LIBRARY_PATH := $(prebuilt_sdk_tools)/$(HOST_OS)/lib64 |
Dan Willemsen | 6353304 | 2017-11-17 18:39:55 -0800 | [diff] [blame] | 602 | ZIPALIGN := $(prebuilt_build_tools_bin)/zipalign |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 603 | endif # TARGET_BUILD_APPS || TARGET_BUILD_PDK |
| 604 | |
| 605 | ifeq (,$(TARGET_BUILD_APPS)) |
| 606 | # Use RenderScript prebuilts for unbundled builds but not PDK builds |
| 607 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc |
| 608 | BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat |
Alan Leung | 83857b6 | 2017-05-11 17:44:59 -0700 | [diff] [blame] | 609 | else |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 610 | LLVM_RS_CC := $(prebuilt_sdk_tools_bin)/llvm-rs-cc |
| 611 | BCC_COMPAT := $(prebuilt_sdk_tools_bin)/bcc_compat |
| 612 | endif # TARGET_BUILD_PDK |
Alan Leung | 83857b6 | 2017-05-11 17:44:59 -0700 | [diff] [blame] | 613 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 614 | prebuilt_sdk_tools := |
| 615 | prebuilt_sdk_tools_bin := |
Colin Cross | 5f89212 | 2017-04-17 14:59:43 -0700 | [diff] [blame] | 616 | |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 617 | ACP := $(prebuilt_build_tools_bin)/acp |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 618 | CKATI := $(prebuilt_build_tools_bin)/ckati |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 619 | DEPMOD := $(HOST_OUT_EXECUTABLES)/depmod |
| 620 | FILESLIST := $(SOONG_HOST_OUT_EXECUTABLES)/fileslist |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 621 | HOST_INIT_VERIFIER := $(HOST_OUT_EXECUTABLES)/host_init_verifier |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 622 | MAKEPARALLEL := $(prebuilt_build_tools_bin)/makeparallel |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 623 | SOONG_JAVAC_WRAPPER := $(SOONG_HOST_OUT_EXECUTABLES)/soong_javac_wrapper |
| 624 | SOONG_ZIP := $(SOONG_HOST_OUT_EXECUTABLES)/soong_zip |
Nan Zhang | 9bd5405 | 2017-09-13 13:13:53 -0700 | [diff] [blame] | 625 | MERGE_ZIPS := $(SOONG_HOST_OUT_EXECUTABLES)/merge_zips |
Dan Willemsen | 4c36d45 | 2018-02-26 18:26:44 -0800 | [diff] [blame] | 626 | XMLLINT := $(SOONG_HOST_OUT_EXECUTABLES)/xmllint |
Dan Willemsen | 6b3a838 | 2018-03-09 21:26:17 -0800 | [diff] [blame] | 627 | XZ := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/bin/xz |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 628 | ZIP2ZIP := $(SOONG_HOST_OUT_EXECUTABLES)/zip2zip |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 629 | ZIPTIME := $(prebuilt_build_tools_bin)/ziptime |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 630 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 631 | # --------------------------------------------------------------- |
| 632 | # Generic tools. |
| 633 | |
Dan Willemsen | 3de78fd | 2018-05-25 16:13:52 -0700 | [diff] [blame] | 634 | LEX := $(prebuilt_build_tools_bin_noasan)/flex |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 635 | # The default PKGDATADIR built in the prebuilt bison is a relative path |
Dan Willemsen | ecae349 | 2018-01-08 17:28:17 -0800 | [diff] [blame] | 636 | # prebuilts/build-tools/common/bison. |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 637 | # To run bison from elsewhere you need to set up enviromental variable |
| 638 | # BISON_PKGDATADIR. |
Dan Willemsen | ecae349 | 2018-01-08 17:28:17 -0800 | [diff] [blame] | 639 | BISON_PKGDATADIR := $(PWD)/prebuilts/build-tools/common/bison |
Dan Willemsen | 3de78fd | 2018-05-25 16:13:52 -0700 | [diff] [blame] | 640 | BISON := $(prebuilt_build_tools_bin_noasan)/bison |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 641 | YACC := $(BISON) -d |
Dan Willemsen | ecae349 | 2018-01-08 17:28:17 -0800 | [diff] [blame] | 642 | BISON_DATA := $(wildcard $(BISON_PKGDATADIR)/* $(BISON_PKGDATADIR)/*/*) |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 643 | |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 644 | YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm |
| 645 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 646 | DOXYGEN:= doxygen |
Steve Fung | cb2e67f | 2015-09-24 01:40:52 -0700 | [diff] [blame] | 647 | ifeq ($(HOST_OS),linux) |
| 648 | BREAKPAD_DUMP_SYMS := $(HOST_OUT_EXECUTABLES)/dump_syms |
| 649 | else |
| 650 | # For non-supported hosts, do not generate breakpad symbols. |
| 651 | BREAKPAD_GENERATE_SYMBOLS := false |
| 652 | endif |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 653 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
Yu Shan | 10be65d | 2018-08-03 23:48:10 +0000 | [diff] [blame] | 654 | NANOPB_SRCS := $(HOST_OUT_EXECUTABLES)/protoc-gen-nanopb |
Keun Soo Yim | 3d48475 | 2016-02-19 11:06:58 -0800 | [diff] [blame] | 655 | VTSC := $(HOST_OUT_EXECUTABLES)/vtsc$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 656 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 657 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
Alex Deymo | b10e07a | 2017-11-09 23:53:42 +0100 | [diff] [blame] | 658 | BROTLI := $(HOST_OUT_EXECUTABLES)/brotli$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 659 | ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 660 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 661 | else |
| 662 | MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG) |
| 663 | endif |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 664 | ifeq (,$(strip $(BOARD_CUSTOM_BPTTOOL))) |
| 665 | BPTTOOL := $(HOST_OUT_EXECUTABLES)/bpttool$(HOST_EXECUTABLE_SUFFIX) |
| 666 | else |
| 667 | BPTTOOL := $(BOARD_CUSTOM_BPTTOOL) |
| 668 | endif |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 669 | ifeq (,$(strip $(BOARD_CUSTOM_AVBTOOL))) |
| 670 | AVBTOOL := $(HOST_OUT_EXECUTABLES)/avbtool$(HOST_EXECUTABLE_SUFFIX) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 671 | else |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 672 | AVBTOOL := $(BOARD_CUSTOM_AVBTOOL) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 673 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 674 | APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX) |
| 675 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
Adrien Schildknecht | 9a072cc | 2016-11-18 17:06:29 -0800 | [diff] [blame] | 676 | MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/mke2fs$(HOST_EXECUTABLE_SUFFIX) |
| 677 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg_mke2fs.sh |
Jin Qian | abcec5e | 2017-03-10 16:53:45 -0800 | [diff] [blame] | 678 | MKE2FS_CONF := system/extras/ext4_utils/mke2fs.conf |
Adrien Schildknecht | 9a072cc | 2016-11-18 17:06:29 -0800 | [diff] [blame] | 679 | BLK_ALLOC_TO_BASE_FS := $(HOST_OUT_EXECUTABLES)/blk_alloc_to_base_fs$(HOST_EXECUTABLE_SUFFIX) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 680 | MAKE_SQUASHFS := $(HOST_OUT_EXECUTABLES)/mksquashfs$(HOST_EXECUTABLE_SUFFIX) |
| 681 | MKSQUASHFSUSERIMG := $(HOST_OUT_EXECUTABLES)/mksquashfsimage.sh |
JP Abgrall | 5bfed5a | 2014-06-16 14:17:40 -0700 | [diff] [blame] | 682 | MAKE_F2FS := $(HOST_OUT_EXECUTABLES)/make_f2fs$(HOST_EXECUTABLE_SUFFIX) |
| 683 | MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 684 | SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX) |
Mohamad Ayyash | 353265b | 2015-06-24 15:42:19 -0700 | [diff] [blame] | 685 | IMG2SIMG := $(HOST_OUT_EXECUTABLES)/img2simg$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 686 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 687 | MKTARBALL := build/make/tools/mktarball.sh |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 688 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 689 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Ying Wang | ed0361f | 2015-04-19 09:55:39 -0700 | [diff] [blame] | 690 | DATA_BINDING_COMPILER := $(HOST_OUT_JAVA_LIBRARIES)/databinding-compiler.jar |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 691 | FAT16COPY := build/make/tools/fat16copy.py |
| 692 | CHECK_LINK_TYPE := build/make/tools/check_link_type.py |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 693 | UUIDGEN := build/make/tools/uuidgen.py |
Yohann Roussel | 2809666 | 2015-02-02 12:18:20 +0100 | [diff] [blame] | 694 | |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 695 | PROGUARD := external/proguard/bin/proguard.sh |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 696 | JAVATAGS := build/make/tools/java-event-log-tags.py |
| 697 | MERGETAGS := build/make/tools/merge-event-log-tags.py |
| 698 | BUILD_IMAGE_SRCS := $(wildcard build/make/tools/releasetools/*.py) |
Colin Cross | 8a30f72 | 2014-04-28 16:27:32 -0700 | [diff] [blame] | 699 | APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg |
| 700 | VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer |
Tao Bao | b4ec6d7 | 2018-03-15 23:21:28 -0700 | [diff] [blame] | 701 | BUILD_VERITY_METADATA := $(HOST_OUT_EXECUTABLES)/build_verity_metadata.py |
Colin Cross | 477cf2b | 2014-04-16 18:49:56 -0700 | [diff] [blame] | 702 | BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 703 | BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer |
Tao Bao | e98fb7a | 2017-02-17 14:11:13 -0800 | [diff] [blame] | 704 | FUTILITY := $(HOST_OUT_EXECUTABLES)/futility-host |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 705 | VBOOT_SIGNER := prebuilts/misc/scripts/vboot_signer/vboot_signer.sh |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 706 | FEC := $(HOST_OUT_EXECUTABLES)/fec |
Tao Bao | e53c6e7 | 2017-04-19 15:54:22 -0700 | [diff] [blame] | 707 | BRILLO_UPDATE_PAYLOAD := $(HOST_OUT_EXECUTABLES)/brillo_update_payload |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 708 | |
Shinichiro Hamaji | f972a4a | 2015-12-09 18:06:20 +0900 | [diff] [blame] | 709 | DEXDUMP := $(HOST_OUT_EXECUTABLES)/dexdump2$(BUILD_EXECUTABLE_SUFFIX) |
Mathieu Chartier | a4b993b | 2017-02-28 11:17:32 -0800 | [diff] [blame] | 710 | PROFMAN := $(HOST_OUT_EXECUTABLES)/profman |
David Brazdil | b8fa6dd | 2018-01-29 14:43:14 +0000 | [diff] [blame] | 711 | HIDDENAPI := $(HOST_OUT_EXECUTABLES)/hiddenapi |
Mathew Inwood | 04c58de | 2018-07-11 15:14:00 +0100 | [diff] [blame] | 712 | CLASS2GREYLIST := $(HOST_OUT_EXECUTABLES)/class2greylist |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 713 | |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 714 | FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin |
| 715 | FINDBUGS := $(FINDBUGS_DIR)/findbugs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 716 | |
Jeff Gaston | d2ba724 | 2018-01-31 17:34:07 -0500 | [diff] [blame] | 717 | JETIFIER := prebuilts/sdk/tools/jetifier/jetifier-standalone/bin/jetifier-standalone |
| 718 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 719 | COLUMN:= column |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 720 | |
Tobias Thierer | 822e961 | 2017-11-17 14:06:51 +0000 | [diff] [blame] | 721 | USE_OPENJDK9 := true |
Colin Cross | 1588c0e | 2018-06-20 16:11:19 -0700 | [diff] [blame] | 722 | |
| 723 | ifeq ($(EXPERIMENTAL_USE_OPENJDK9),) |
Tobias Thierer | f6bd495 | 2017-11-15 20:55:03 +0000 | [diff] [blame] | 724 | TARGET_OPENJDK9 := |
| 725 | else ifeq ($(EXPERIMENTAL_USE_OPENJDK9),1.8) |
Tobias Thierer | f6bd495 | 2017-11-15 20:55:03 +0000 | [diff] [blame] | 726 | TARGET_OPENJDK9 := |
| 727 | else ifeq ($(EXPERIMENTAL_USE_OPENJDK9),true) |
Tobias Thierer | f6bd495 | 2017-11-15 20:55:03 +0000 | [diff] [blame] | 728 | TARGET_OPENJDK9 := true |
| 729 | endif |
| 730 | |
Tobias Thierer | 7e99d45 | 2017-12-20 18:36:56 +0000 | [diff] [blame] | 731 | # Path to tools.jar |
| 732 | 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] | 733 | |
| 734 | # It's called md5 on Mac OS and md5sum on Linux |
| 735 | ifeq ($(HOST_OS),darwin) |
| 736 | MD5SUM:=md5 -q |
| 737 | else |
| 738 | MD5SUM:=md5sum |
| 739 | endif |
| 740 | |
Tobias Thierer | 3c4c0b6 | 2017-05-17 23:26:00 +0100 | [diff] [blame] | 741 | APICHECK_CLASSPATH_ENTRIES := \ |
Jiyong Park | 1c671fd | 2018-05-12 22:11:27 +0900 | [diff] [blame] | 742 | $(HOST_OUT_JAVA_LIBRARIES)/apicheck$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
Tobias Thierer | 3c4c0b6 | 2017-05-17 23:26:00 +0100 | [diff] [blame] | 743 | $(HOST_JDK_TOOLS_JAR) \ |
| 744 | ) |
| 745 | APICHECK_CLASSPATH := $(subst $(space),:,$(strip $(APICHECK_CLASSPATH_ENTRIES))) |
| 746 | |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 747 | APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)" |
| 748 | |
Jaekyun Seok | 2528cd2 | 2018-01-16 14:14:59 +0900 | [diff] [blame] | 749 | # Boolean variable determining if the whitelist for compatible properties is enabled |
| 750 | PRODUCT_COMPATIBLE_PROPERTY := false |
| 751 | ifneq ($(PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE),) |
| 752 | PRODUCT_COMPATIBLE_PROPERTY := $(PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE) |
| 753 | else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 754 | #$(warning no product shipping level defined) |
| 755 | else ifneq ($(call math_lt,27,$(PRODUCT_SHIPPING_API_LEVEL)),) |
| 756 | PRODUCT_COMPATIBLE_PROPERTY := true |
| 757 | endif |
| 758 | |
| 759 | .KATI_READONLY := \ |
| 760 | PRODUCT_COMPATIBLE_PROPERTY |
| 761 | |
Steven Moreland | 2b32469 | 2017-05-18 15:26:59 -0700 | [diff] [blame] | 762 | # Boolean variable determining if Treble is fully enabled |
| 763 | PRODUCT_FULL_TREBLE := false |
| 764 | ifneq ($(PRODUCT_FULL_TREBLE_OVERRIDE),) |
| 765 | PRODUCT_FULL_TREBLE := $(PRODUCT_FULL_TREBLE_OVERRIDE) |
| 766 | else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 767 | #$(warning no product shipping level defined) |
| 768 | else ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),26),) |
| 769 | PRODUCT_FULL_TREBLE := true |
| 770 | endif |
| 771 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 772 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior and remove |
| 773 | # references to it here and below. |
| 774 | ifdef PRODUCT_NOTICE_SPLIT_OVERRIDE |
| 775 | $(error PRODUCT_NOTICE_SPLIT_OVERRIDE cannot be set.) |
| 776 | endif |
| 777 | |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 778 | requirements := \ |
| 779 | PRODUCT_TREBLE_LINKER_NAMESPACES \ |
| 780 | PRODUCT_SEPOLICY_SPLIT \ |
| 781 | PRODUCT_ENFORCE_VINTF_MANIFEST \ |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 782 | PRODUCT_NOTICE_SPLIT |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 783 | |
| 784 | # If it is overriden, then the requirement override is taken, otherwise it's |
| 785 | # PRODUCT_FULL_TREBLE |
| 786 | $(foreach req,$(requirements),$(eval \ |
| 787 | $(req) := $(if $($(req)_OVERRIDE),$($(req)_OVERRIDE),$(PRODUCT_FULL_TREBLE)))) |
Steven Moreland | 27aaeca | 2017-12-06 17:21:02 +0000 | [diff] [blame] | 788 | # If the requirement is false for any reason, then it's not PRODUCT_FULL_TREBLE |
| 789 | $(foreach req,$(requirements),$(eval \ |
| 790 | PRODUCT_FULL_TREBLE := $(if $(filter false,$($(req))),false,$(PRODUCT_FULL_TREBLE)))) |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 791 | |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 792 | PRODUCT_FULL_TREBLE_OVERRIDE ?= |
| 793 | $(foreach req,$(requirements),$(eval $(req)_OVERRIDE ?=)) |
| 794 | |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 795 | .KATI_READONLY := \ |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 796 | PRODUCT_FULL_TREBLE_OVERRIDE \ |
| 797 | $(foreach req,$(requirements),$(req)_OVERRIDE) \ |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 798 | $(requirements) \ |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 799 | PRODUCT_FULL_TREBLE \ |
Steven Moreland | 043b07c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 800 | |
| 801 | requirements := |
| 802 | |
Jaekyun Seok | c227ce7 | 2018-02-08 07:19:55 +0900 | [diff] [blame] | 803 | # BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED can be true only if early-mount of |
| 804 | # partitions is supported. But the early-mount must be supported for full |
| 805 | # treble products, and so BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED should be set |
| 806 | # by default for full treble products. |
| 807 | ifeq ($(PRODUCT_FULL_TREBLE),true) |
| 808 | BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED ?= true |
| 809 | endif |
| 810 | |
Justin Yun | 571737e | 2017-12-12 15:47:14 +0900 | [diff] [blame] | 811 | # If PRODUCT_USE_VNDK is true and BOARD_VNDK_VERSION is not defined yet, |
| 812 | # BOARD_VNDK_VERSION will be set to "current" as default. |
| 813 | # PRODUCT_USE_VNDK will be true in Android-P or later launching devices. |
| 814 | PRODUCT_USE_VNDK := false |
| 815 | ifneq ($(PRODUCT_USE_VNDK_OVERRIDE),) |
| 816 | PRODUCT_USE_VNDK := $(PRODUCT_USE_VNDK_OVERRIDE) |
| 817 | else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 818 | # No shipping level defined |
| 819 | else ifeq ($(call math_gt_or_eq,27,$(PRODUCT_SHIPPING_API_LEVEL)),) |
| 820 | PRODUCT_USE_VNDK := $(PRODUCT_FULL_TREBLE) |
| 821 | endif |
| 822 | |
| 823 | ifeq ($(PRODUCT_USE_VNDK),true) |
| 824 | ifndef BOARD_VNDK_VERSION |
| 825 | BOARD_VNDK_VERSION := current |
| 826 | endif |
| 827 | endif |
| 828 | |
| 829 | $(KATI_obsolete_var PRODUCT_USE_VNDK_OVERRIDE,Use PRODUCT_USE_VNDK instead) |
| 830 | .KATI_READONLY := \ |
| 831 | PRODUCT_USE_VNDK |
| 832 | |
Jiyong Park | b8f1682 | 2018-04-23 10:39:54 +0900 | [diff] [blame] | 833 | # Set BOARD_SYSTEMSDK_VERSIONS to the latest SystemSDK version starting from P-launching |
| 834 | # devices if unset. |
| 835 | ifndef BOARD_SYSTEMSDK_VERSIONS |
| 836 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 837 | ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),28),) |
| 838 | ifeq (REL,$(PLATFORM_VERSION_CODENAME)) |
| 839 | BOARD_SYSTEMSDK_VERSIONS := $(PLATFORM_SDK_VERSION) |
| 840 | else |
| 841 | BOARD_SYSTEMSDK_VERSIONS := $(PLATFORM_VERSION_CODENAME) |
| 842 | endif |
| 843 | endif |
| 844 | endif |
| 845 | endif |
| 846 | |
| 847 | |
Dan Willemsen | e49ee70 | 2017-09-29 15:32:22 -0700 | [diff] [blame] | 848 | ifdef PRODUCT_SHIPPING_API_LEVEL |
Jiyong Park | 95f9313 | 2018-01-22 15:25:14 +0900 | [diff] [blame] | 849 | ifneq ($(call numbers_less_than,$(PRODUCT_SHIPPING_API_LEVEL),$(BOARD_SYSTEMSDK_VERSIONS)),) |
| 850 | $(error BOARD_SYSTEMSDK_VERSIONS ($(BOARD_SYSTEMSDK_VERSIONS)) must all be greater than or equal to PRODUCT_SHIPPING_API_LEVEL ($(PRODUCT_SHIPPING_API_LEVEL))) |
| 851 | endif |
Martijn Coenen | 08f10d0 | 2018-01-22 09:01:15 +0100 | [diff] [blame] | 852 | ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),28),) |
| 853 | ifneq ($(TARGET_IS_64_BIT), true) |
| 854 | ifneq ($(TARGET_USES_64_BIT_BINDER), true) |
| 855 | $(error When PRODUCT_SHIPPING_API_LEVEL >= 28, TARGET_USES_64_BIT_BINDER must be true) |
| 856 | endif |
| 857 | endif |
Bowgo Tsai | ed3b1ca | 2018-03-26 22:10:57 +0800 | [diff] [blame] | 858 | ifeq ($(PRODUCT_FULL_TREBLE),true) |
| 859 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE), true) |
| 860 | $(error When PRODUCT_SHIPPING_API_LEVEL >= 28, BOARD_BUILD_SYSTEM_ROOT_IMAGE must be true) |
| 861 | endif |
| 862 | endif |
Martijn Coenen | 08f10d0 | 2018-01-22 09:01:15 +0100 | [diff] [blame] | 863 | endif |
Bowgo Tsai | e4e3018 | 2018-08-14 00:13:24 +0800 | [diff] [blame] | 864 | ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),29),) |
| 865 | ifneq ($(BOARD_OTA_FRAMEWORK_VBMETA_VERSION_OVERRIDE),) |
| 866 | $(error When PRODUCT_SHIPPING_API_LEVEL >= 29, BOARD_OTA_FRAMEWORK_VBMETA_VERSION_OVERRIDE cannot be set) |
| 867 | endif |
| 868 | endif |
Dan Willemsen | e49ee70 | 2017-09-29 15:32:22 -0700 | [diff] [blame] | 869 | endif |
| 870 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 871 | # The default key if not set as LOCAL_CERTIFICATE |
| 872 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 873 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 874 | else |
| 875 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey |
| 876 | endif |
| 877 | |
Colin Cross | e96bfdb | 2017-11-03 15:49:25 -0700 | [diff] [blame] | 878 | BUILD_NUMBER_FROM_FILE := $$(cat $(OUT_DIR)/build_number.txt) |
Nan Zhang | 975f41e | 2018-02-14 13:30:53 -0800 | [diff] [blame] | 879 | BUILD_DATETIME_FROM_FILE := $$(cat $(BUILD_DATETIME_FILE)) |
Colin Cross | e96bfdb | 2017-11-03 15:49:25 -0700 | [diff] [blame] | 880 | |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 881 | # SEPolicy versions |
| 882 | |
| 883 | # PLATFORM_SEPOLICY_VERSION is a number of the form "NN.m" with "NN" mapping to |
| 884 | # PLATFORM_SDK_VERSION and "m" as a minor number which allows for SELinux |
| 885 | # changes independent of PLATFORM_SDK_VERSION. This value will be set to |
| 886 | # 10000.0 to represent tip-of-tree development that is inherently unstable and |
| 887 | # thus designed not to work with any shipping vendor policy. This is similar in |
| 888 | # spirit to how DEFAULT_APP_TARGET_SDK is set. |
| 889 | # The minor version ('m' component) must be updated every time a platform release |
| 890 | # is made which breaks compatibility with the previous platform sepolicy version, |
| 891 | # not just on every increase in PLATFORM_SDK_VERSION. The minor version should |
| 892 | # be reset to 0 on every bump of the PLATFORM_SDK_VERSION. |
Wale Ogunwale | 07a54b7 | 2018-04-11 15:00:05 -0700 | [diff] [blame] | 893 | sepolicy_major_vers := 28 |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 894 | sepolicy_minor_vers := 0 |
| 895 | |
| 896 | ifneq ($(sepolicy_major_vers), $(PLATFORM_SDK_VERSION)) |
| 897 | $(error sepolicy_major_version does not match PLATFORM_SDK_VERSION, please update.) |
| 898 | endif |
Tri Vo | d9c8e95 | 2018-03-27 13:49:19 -0700 | [diff] [blame] | 899 | |
| 900 | TOT_SEPOLICY_VERSION := 10000.0 |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 901 | ifneq (REL,$(PLATFORM_VERSION_CODENAME)) |
Tri Vo | d9c8e95 | 2018-03-27 13:49:19 -0700 | [diff] [blame] | 902 | PLATFORM_SEPOLICY_VERSION := $(TOT_SEPOLICY_VERSION) |
| 903 | else |
| 904 | PLATFORM_SEPOLICY_VERSION := $(join $(addsuffix .,$(sepolicy_major_vers)), $(sepolicy_minor_vers)) |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 905 | endif |
Yifan Hong | 8f4547c | 2018-02-05 15:51:34 -0800 | [diff] [blame] | 906 | sepolicy_major_vers := |
| 907 | sepolicy_minor_vers := |
| 908 | |
Yifan Hong | 9bf9301 | 2018-02-05 15:52:46 -0800 | [diff] [blame] | 909 | # A list of SEPolicy versions, besides PLATFORM_SEPOLICY_VERSION, that the framework supports. |
| 910 | PLATFORM_SEPOLICY_COMPAT_VERSIONS := \ |
| 911 | 26.0 \ |
Tri Vo | 047c4d5 | 2018-07-17 15:00:26 -0700 | [diff] [blame] | 912 | 27.0 \ |
| 913 | 28.0 \ |
Yifan Hong | 9bf9301 | 2018-02-05 15:52:46 -0800 | [diff] [blame] | 914 | |
Tri Vo | d9c8e95 | 2018-03-27 13:49:19 -0700 | [diff] [blame] | 915 | .KATI_READONLY := \ |
| 916 | PLATFORM_SEPOLICY_COMPAT_VERSIONS \ |
| 917 | PLATFORM_SEPOLICY_VERSION \ |
| 918 | TOT_SEPOLICY_VERSION \ |
| 919 | |
Yifan Hong | 0c3eb63 | 2018-07-26 11:40:12 -0700 | [diff] [blame] | 920 | # If true, kernel configuration requirements are present in OTA package (and will be enforced |
| 921 | # during OTA). Otherwise, kernel configuration requirements are enforced in VTS. |
| 922 | # Devices that checks the running kernel (instead of the kernel in OTA package) should not |
| 923 | # set this variable to prevent OTA failures. |
| 924 | ifndef PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 925 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS := |
| 926 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 927 | ifeq (true,$(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),29)) |
| 928 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS := true |
| 929 | endif |
| 930 | endif |
| 931 | endif |
| 932 | .KATI_READONLY := PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 933 | |
Yifan Hong | a42e5f9 | 2018-07-31 13:30:38 -0700 | [diff] [blame] | 934 | ifeq ($(PRODUCT_USE_LOGICAL_PARTITIONS),true) |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 935 | requirements := \ |
| 936 | PRODUCT_USE_DYNAMIC_PARTITION_SIZE \ |
| 937 | PRODUCT_BUILD_SUPER_PARTITION \ |
| 938 | PRODUCT_USE_FASTBOOTD \ |
| 939 | |
| 940 | $(foreach req,$(requirements),$(if $(filter false,$($(req))),\ |
Yifan Hong | a42e5f9 | 2018-07-31 13:30:38 -0700 | [diff] [blame] | 941 | $(error PRODUCT_USE_LOGICAL_PARTITIONS requires $(req) to be true))) |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 942 | |
| 943 | requirements := |
| 944 | |
Yifan Hong | dfaa860 | 2018-05-31 13:07:13 -0700 | [diff] [blame] | 945 | BOARD_KERNEL_CMDLINE += androidboot.logical_partitions=1 |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 946 | endif |
| 947 | |
| 948 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITION_SIZE),true) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 949 | |
| 950 | ifneq ($(BOARD_SYSTEMIMAGE_PARTITION_SIZE),) |
| 951 | ifneq ($(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE),) |
| 952 | $(error Should not define BOARD_SYSTEMIMAGE_PARTITION_SIZE and \ |
| 953 | BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE together) |
Yifan Hong | ef4cd71 | 2018-05-18 17:46:04 -0700 | [diff] [blame] | 954 | endif |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 955 | endif |
| 956 | |
Yifan Hong | 749062d | 2018-06-19 16:23:16 -0700 | [diff] [blame] | 957 | ifneq ($(BOARD_VENDORIMAGE_PARTITION_SIZE),) |
| 958 | ifneq ($(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE),) |
| 959 | $(error Should not define BOARD_VENDORIMAGE_PARTITION_SIZE and \ |
| 960 | BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE together) |
| 961 | endif |
| 962 | endif |
| 963 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 964 | ifneq ($(BOARD_ODMIMAGE_PARTITION_SIZE),) |
| 965 | ifneq ($(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE),) |
| 966 | $(error Should not define BOARD_ODMIMAGE_PARTITION_SIZE and \ |
| 967 | BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE together) |
| 968 | endif |
| 969 | endif |
| 970 | |
Yifan Hong | 56a6c3b | 2018-07-20 15:19:34 -0700 | [diff] [blame] | 971 | ifneq ($(BOARD_PRODUCTIMAGE_PARTITION_SIZE),) |
| 972 | ifneq ($(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE),) |
| 973 | $(error Should not define BOARD_PRODUCTIMAGE_PARTITION_SIZE and \ |
| 974 | BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE together) |
| 975 | endif |
| 976 | endif |
| 977 | |
Yifan Hong | 9c35a02 | 2018-07-20 15:33:47 -0700 | [diff] [blame] | 978 | ifneq ($(BOARD_PRODUCT_SERVICESIMAGE_PARTITION_SIZE),) |
| 979 | ifneq ($(BOARD_PRODUCT_SERVICESIMAGE_PARTITION_RESERVED_SIZE),) |
| 980 | $(error Should not define BOARD_PRODUCT_SERVICESIMAGE_PARTITION_SIZE and \ |
| 981 | BOARD_PRODUCT_SERVICESIMAGE_PARTITION_RESERVED_SIZE together) |
| 982 | endif |
| 983 | endif |
| 984 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 985 | endif # PRODUCT_USE_DYNAMIC_PARTITION_SIZE |
| 986 | |
| 987 | ifeq ($(PRODUCT_BUILD_SUPER_PARTITION),true) |
Yifan Hong | 78ae261 | 2018-07-24 17:44:18 -0700 | [diff] [blame] | 988 | ifdef BOARD_SUPER_PARTITION_PARTITION_LIST |
| 989 | # BOARD_SUPER_PARTITION_PARTITION_LIST: a list of the following tokens |
Yifan Hong | ebc041a | 2018-07-26 16:02:52 -0700 | [diff] [blame] | 990 | valid_super_partition_list := system vendor product product_services |
Yifan Hong | 78ae261 | 2018-07-24 17:44:18 -0700 | [diff] [blame] | 991 | ifneq (,$(filter-out $(valid_super_partition_list),$(BOARD_SUPER_PARTITION_PARTITION_LIST))) |
Yifan Hong | ebc041a | 2018-07-26 16:02:52 -0700 | [diff] [blame] | 992 | $(error BOARD_SUPER_PARTITION_PARTITION_LIST contains invalid partition name \ |
| 993 | ($(filter-out $(valid_super_partition_list),$(BOARD_SUPER_PARTITION_PARTITION_LIST))). \ |
| 994 | Valid names are $(valid_super_partition_list)) |
Yifan Hong | 78ae261 | 2018-07-24 17:44:18 -0700 | [diff] [blame] | 995 | endif |
| 996 | valid_super_partition_list := |
| 997 | endif # BOARD_SUPER_PARTITION_PARTITION_LIST |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 998 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | ef4cd71 | 2018-05-18 17:46:04 -0700 | [diff] [blame] | 999 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1000 | # ############################################################### |
| 1001 | # Set up final options. |
| 1002 | # ############################################################### |
| 1003 | |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 1004 | # We run gcc/clang with PWD=/proc/self/cwd to remove the $TOP |
| 1005 | # from the debug output. That way two builds in two different |
| 1006 | # directories will create the same output. |
| 1007 | # /proc doesn't exist on Darwin. |
| 1008 | ifeq ($(HOST_OS),linux) |
| 1009 | RELATIVE_PWD := PWD=/proc/self/cwd |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 1010 | else |
| 1011 | RELATIVE_PWD := |
| 1012 | endif |
| 1013 | |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 1014 | TARGET_PROJECT_INCLUDES := |
Dan Willemsen | bab0fa6 | 2016-11-18 14:05:39 -0800 | [diff] [blame] | 1015 | TARGET_PROJECT_SYSTEM_INCLUDES := \ |
Dima Zavin | 8e4042c | 2012-03-30 10:24:31 -0700 | [diff] [blame] | 1016 | $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \ |
| 1017 | $(TARGET_PRODUCT_KERNEL_HEADERS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1018 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 1019 | ifdef TARGET_2ND_ARCH |
Ying Wang | 9fb3526 | 2014-02-21 16:17:05 -0800 | [diff] [blame] | 1020 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES := $(TARGET_PROJECT_INCLUDES) |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 1021 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_SYSTEM_INCLUDES := $(TARGET_PROJECT_SYSTEM_INCLUDES) |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 1022 | endif |
| 1023 | |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 1024 | # Flags for DEX2OAT |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 1025 | first_non_empty_of_three = $(if $(1),$(1),$(if $(2),$(2),$(3))) |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 1026 | DEX2OAT_TARGET_ARCH := $(TARGET_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 1027 | DEX2OAT_TARGET_CPU_VARIANT := $(call first_non_empty_of_three,$(TARGET_CPU_VARIANT),$(TARGET_ARCH_VARIANT),default) |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 1028 | DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 1029 | |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 1030 | ifdef TARGET_2ND_ARCH |
| 1031 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 1032 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT := $(call first_non_empty_of_three,$(TARGET_2ND_CPU_VARIANT),$(TARGET_2ND_ARCH_VARIANT),default) |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 1033 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 1034 | endif |
| 1035 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1036 | # ############################################################### |
| 1037 | # Collect a list of the SDK versions that we could compile against |
| 1038 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 1039 | # ############################################################### |
| 1040 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 1041 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 1042 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 1043 | |
Ying Wang | 589e8c5 | 2015-05-19 16:03:57 -0700 | [diff] [blame] | 1044 | # The path where app can reference the support library resources. |
| 1045 | ifdef TARGET_BUILD_APPS |
| 1046 | SUPPORT_LIBRARY_ROOT := $(HISTORICAL_SDK_VERSIONS_ROOT)/current/support |
| 1047 | else |
| 1048 | SUPPORT_LIBRARY_ROOT := frameworks/support |
| 1049 | endif |
| 1050 | |
Anton Hansson | 66d47b8 | 2018-04-27 14:11:17 +0100 | [diff] [blame] | 1051 | get-sdk-version = $(if $(findstring _,$(1)),$(subst core_,,$(subst system_,,$(subst test_,,$(1)))),$(1)) |
| 1052 | get-sdk-api = $(if $(findstring _,$(1)),$(patsubst %_$(call get-sdk-version,$(1)),%,$(1)),public) |
| 1053 | get-prebuilt-sdk-dir = $(HISTORICAL_SDK_VERSIONS_ROOT)/$(call get-sdk-version,$(1))/$(call get-sdk-api,$(1)) |
| 1054 | |
Anton Hansson | 400673c | 2018-04-10 16:16:33 +0100 | [diff] [blame] | 1055 | # Resolve LOCAL_SDK_VERSION to prebuilt module name, e.g.: |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1056 | # 23 -> sdk_public_23_android |
| 1057 | # system_current -> sdk_system_current_android |
Anton Hansson | 400673c | 2018-04-10 16:16:33 +0100 | [diff] [blame] | 1058 | # $(1): An sdk version (LOCAL_SDK_VERSION) |
Anton Hansson | f5cefdc | 2018-04-12 16:17:55 +0100 | [diff] [blame] | 1059 | # $(2): optional library name (default: android) |
Anton Hansson | 400673c | 2018-04-10 16:16:33 +0100 | [diff] [blame] | 1060 | define resolve-prebuilt-sdk-module |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1061 | $(if $(findstring _,$(1)),\ |
Anton Hansson | f5cefdc | 2018-04-12 16:17:55 +0100 | [diff] [blame] | 1062 | sdk_$(1)_$(or $(2),android),\ |
| 1063 | sdk_public_$(1)_$(or $(2),android)) |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1064 | endef |
| 1065 | |
Anton Hansson | 66d47b8 | 2018-04-27 14:11:17 +0100 | [diff] [blame] | 1066 | # Resolve LOCAL_SDK_VERSION to prebuilt android.jar |
| 1067 | # $(1): LOCAL_SDK_VERSION |
| 1068 | resolve-prebuilt-sdk-jar-path = $(call get-prebuilt-sdk-dir,$(1))/android.jar |
| 1069 | |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1070 | # Resolve LOCAL_SDK_VERSION to prebuilt framework.aidl |
| 1071 | # $(1): An sdk version (LOCAL_SDK_VERSION) |
Anton Hansson | 66d47b8 | 2018-04-27 14:11:17 +0100 | [diff] [blame] | 1072 | 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] | 1073 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 1074 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 1075 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1076 | # |
| 1077 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 1078 | # on each line for sort to process. |
| 1079 | # 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] | 1080 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 1081 | # Numerically sort a list of numbers |
| 1082 | # $(1): the list of numbers to be sorted |
| 1083 | define numerically_sort |
| 1084 | $(shell function sgrax() { \ |
| 1085 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 1086 | } ; \ |
| 1087 | ( sgrax $(1) | sort -g ) ) |
| 1088 | endef |
| 1089 | |
Anton Hansson | 9235faa | 2018-04-10 16:18:44 +0100 | [diff] [blame] | 1090 | # This produces a list like "current/core current/public current/system 4/public" |
| 1091 | TARGET_AVAILABLE_SDK_VERSIONS := $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/*/android.jar) |
| 1092 | TARGET_AVAILABLE_SDK_VERSIONS := $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1093 | # Strips and reorganizes the "public", "core" and "system" subdirs. |
| 1094 | TARGET_AVAILABLE_SDK_VERSIONS := $(subst /public,,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1095 | TARGET_AVAILABLE_SDK_VERSIONS := $(patsubst %/core,core_%,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1096 | TARGET_AVAILABLE_SDK_VERSIONS := $(patsubst %/system,system_%,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1097 | # No prebuilt for test_current. |
| 1098 | TARGET_AVAILABLE_SDK_VERSIONS += test_current |
| 1099 | 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] | 1100 | |
Colin Cross | f960257 | 2017-10-12 13:34:40 -0700 | [diff] [blame] | 1101 | TARGET_SDK_VERSIONS_WITHOUT_JAVA_18_SUPPORT := $(call numbers_less_than,24,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1102 | TARGET_SDK_VERSIONS_WITHOUT_JAVA_19_SUPPORT := $(call numbers_less_than,27,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 1103 | |
Nan Zhang | 82d40c4 | 2018-03-12 16:33:26 -0700 | [diff] [blame] | 1104 | ifndef INTERNAL_PLATFORM_PRIVATE_API_FILE |
David Brazdil | 97b22ce | 2018-01-16 15:01:23 +0000 | [diff] [blame] | 1105 | INTERNAL_PLATFORM_PRIVATE_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/private.txt |
Nan Zhang | 82d40c4 | 2018-03-12 16:33:26 -0700 | [diff] [blame] | 1106 | endif |
| 1107 | ifndef INTERNAL_PLATFORM_PRIVATE_DEX_API_FILE |
David Brazdil | 97b22ce | 2018-01-16 15:01:23 +0000 | [diff] [blame] | 1108 | INTERNAL_PLATFORM_PRIVATE_DEX_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/private-dex.txt |
Nan Zhang | 82d40c4 | 2018-03-12 16:33:26 -0700 | [diff] [blame] | 1109 | endif |
| 1110 | ifndef INTERNAL_PLATFORM_SYSTEM_PRIVATE_API_FILE |
David Brazdil | 97b22ce | 2018-01-16 15:01:23 +0000 | [diff] [blame] | 1111 | INTERNAL_PLATFORM_SYSTEM_PRIVATE_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-private.txt |
Nan Zhang | 82d40c4 | 2018-03-12 16:33:26 -0700 | [diff] [blame] | 1112 | endif |
| 1113 | ifndef INTERNAL_PLATFORM_SYSTEM_PRIVATE_DEX_API_FILE |
David Brazdil | 97b22ce | 2018-01-16 15:01:23 +0000 | [diff] [blame] | 1114 | INTERNAL_PLATFORM_SYSTEM_PRIVATE_DEX_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-private-dex.txt |
Nan Zhang | 82d40c4 | 2018-03-12 16:33:26 -0700 | [diff] [blame] | 1115 | endif |
Gary King | 1e80c29 | 2010-03-08 17:16:57 -0800 | [diff] [blame] | 1116 | |
David Brazdil | 467a10c | 2018-06-28 11:28:16 +0100 | [diff] [blame] | 1117 | INTERNAL_PLATFORM_HIDDENAPI_PUBLIC_LIST := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/hiddenapi-public-list.txt |
| 1118 | INTERNAL_PLATFORM_HIDDENAPI_PRIVATE_LIST := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/hiddenapi-private-list.txt |
David Brazdil | b67402e | 2018-08-22 17:38:02 +0100 | [diff] [blame^] | 1119 | INTERNAL_PLATFORM_HIDDENAPI_WHITELIST := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/hiddenapi-whitelist.txt |
David Brazdil | ae6915e | 2018-01-22 19:47:44 +0000 | [diff] [blame] | 1120 | INTERNAL_PLATFORM_HIDDENAPI_LIGHT_GREYLIST := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/hiddenapi-light-greylist.txt |
David Brazdil | 2e36f52 | 2018-01-26 11:07:18 +0000 | [diff] [blame] | 1121 | INTERNAL_PLATFORM_HIDDENAPI_DARK_GREYLIST := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/hiddenapi-dark-greylist.txt |
| 1122 | INTERNAL_PLATFORM_HIDDENAPI_BLACKLIST := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/hiddenapi-blacklist.txt |
David Brazdil | ae6915e | 2018-01-22 19:47:44 +0000 | [diff] [blame] | 1123 | |
Mathieu Chartier | 09f3b97 | 2018-03-23 21:57:02 -0700 | [diff] [blame] | 1124 | # Missing optional uses-libraries so that the platform doesn't create build rules that depend on |
| 1125 | # them. See setup_one_odex.mk. |
| 1126 | INTERNAL_PLATFORM_MISSING_USES_LIBRARIES := com.google.android.ble com.google.android.wearable |
| 1127 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 1128 | # This is the standard way to name a directory containing prebuilt target |
| 1129 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 1130 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Colin Cross | 12d18eb | 2014-05-22 12:01:23 -0700 | [diff] [blame] | 1131 | ifdef TARGET_2ND_ARCH |
| 1132 | TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH) |
| 1133 | endif |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 1134 | |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 1135 | # Set up RS prebuilt variables for compatibility library |
| 1136 | |
Tim Murray | dc1d0ab | 2014-09-30 15:08:03 -0700 | [diff] [blame] | 1137 | 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] | 1138 | RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a |
| 1139 | |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 1140 | # API Level lists for Renderscript Compat lib. |
| 1141 | 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] | 1142 | RSCOMPAT_NO_USAGEIO_API_LEVELS := 8 9 10 11 12 13 |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 1143 | |
Colin Cross | c7bd540 | 2017-10-30 17:31:44 -0700 | [diff] [blame] | 1144 | # Add BUILD_NUMBER to apps default version name if it's unbundled build. |
| 1145 | ifdef TARGET_BUILD_APPS |
| 1146 | TARGET_BUILD_WITH_APPS_VERSION_NAME := true |
| 1147 | endif |
| 1148 | |
| 1149 | ifdef TARGET_BUILD_WITH_APPS_VERSION_NAME |
| 1150 | APPS_DEFAULT_VERSION_NAME := $(PLATFORM_VERSION)-$(BUILD_NUMBER_FROM_FILE) |
| 1151 | else |
| 1152 | APPS_DEFAULT_VERSION_NAME := $(PLATFORM_VERSION) |
| 1153 | endif |
| 1154 | |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 1155 | # ANDROID_WARNING_ALLOWED_PROJECTS is generated by build/soong. |
Chih-Hung Hsieh | bab0488 | 2016-10-11 15:38:39 -0700 | [diff] [blame] | 1156 | define find_warning_allowed_projects |
| 1157 | $(filter $(ANDROID_WARNING_ALLOWED_PROJECTS),$(1)/) |
| 1158 | endef |
| 1159 | |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 1160 | # These goals don't need to collect and include Android.mks/CleanSpec.mks |
| 1161 | # in the source tree. |
Dan Willemsen | 0f2ab46 | 2017-05-18 13:42:40 -0700 | [diff] [blame] | 1162 | dont_bother_goals := out \ |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 1163 | snod systemimage-nodeps \ |
| 1164 | stnod systemtarball-nodeps \ |
| 1165 | userdataimage-nodeps userdatatarball-nodeps \ |
| 1166 | cacheimage-nodeps \ |
| 1167 | bptimage-nodeps \ |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 1168 | vnod vendorimage-nodeps \ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 1169 | pnod productimage-nodeps \ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1170 | psnod productservicesimage-nodeps \ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1171 | onod odmimage-nodeps \ |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 1172 | systemotherimage-nodeps \ |
| 1173 | ramdisk-nodeps \ |
| 1174 | bootimage-nodeps \ |
| 1175 | recoveryimage-nodeps \ |
| 1176 | vbmetaimage-nodeps \ |
| 1177 | product-graph dump-products |
| 1178 | |
Dan Willemsen | 20f99a6 | 2017-10-12 01:35:14 -0700 | [diff] [blame] | 1179 | ifeq ($(CALLED_FROM_SETUP),true) |
Dan Willemsen | 04f53ed | 2016-11-09 17:22:15 -0800 | [diff] [blame] | 1180 | include $(BUILD_SYSTEM)/ninja_config.mk |
Dan Willemsen | 04f53ed | 2016-11-09 17:22:15 -0800 | [diff] [blame] | 1181 | include $(BUILD_SYSTEM)/soong_config.mk |
| 1182 | endif |
| 1183 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 1184 | include $(BUILD_SYSTEM)/dumpvar.mk |