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 | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 48 | # this turns off the suffix rules built into make |
| 49 | .SUFFIXES: |
| 50 | |
| 51 | # this turns off the RCS / SCCS implicit rules of GNU Make |
| 52 | % : RCS/%,v |
| 53 | % : RCS/% |
| 54 | % : %,v |
| 55 | % : s.% |
| 56 | % : SCCS/s.% |
| 57 | |
| 58 | # If a rule fails, delete $@. |
| 59 | .DELETE_ON_ERROR: |
| 60 | |
Dan Willemsen | 2ec3e4a | 2017-10-30 13:41:53 -0700 | [diff] [blame] | 61 | # Mark variables deprecated/obsolete |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 62 | CHANGES_URL := https://android.googlesource.com/platform/build/+/master/Changes.md |
| 63 | $(KATI_deprecated_var PATH,Do not use PATH directly. See $(CHANGES_URL)#PATH) |
Dan Willemsen | 79fd696 | 2017-11-28 22:32:05 -0800 | [diff] [blame] | 64 | $(KATI_obsolete_var PYTHONPATH,Do not use PYTHONPATH directly. See $(CHANGES_URL)#PYTHONPATH) |
| 65 | $(KATI_obsolete_var OUT,Use OUT_DIR instead. See $(CHANGES_URL)#OUT) |
| 66 | $(KATI_obsolete_var ANDROID_HOST_OUT,Use HOST_OUT instead. See $(CHANGES_URL)#ANDROID_HOST_OUT) |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 67 | $(KATI_deprecated_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] | 68 | $(KATI_obsolete_var ANDROID_HOST_OUT_TESTCASES,Use HOST_OUT_TESTCASES instead. See $(CHANGES_URL)#ANDROID_HOST_OUT_TESTCASES) |
| 69 | $(KATI_obsolete_var ANDROID_TARGET_OUT_TESTCASES,Use TARGET_OUT_TESTCASES instead. See $(CHANGES_URL)#ANDROID_TARGET_OUT_TESTCASES) |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 70 | $(KATI_deprecated_var ANDROID_BUILD_TOP,Use '.' instead. See $(CHANGES_URL)#ANDROID_BUILD_TOP) |
Dan Willemsen | 79fd696 | 2017-11-28 22:32:05 -0800 | [diff] [blame] | 71 | $(KATI_obsolete_var \ |
Dan Willemsen | 7733862 | 2017-11-08 16:39:18 -0800 | [diff] [blame] | 72 | ANDROID_TOOLCHAIN \ |
| 73 | ANDROID_TOOLCHAIN_2ND_ARCH \ |
| 74 | ANDROID_DEV_SCRIPTS \ |
| 75 | ANDROID_EMULATOR_PREBUILTS \ |
| 76 | ANDROID_PRE_BUILD_PATHS \ |
| 77 | ,See $(CHANGES_URL)#other_envsetup_variables) |
| 78 | |
| 79 | CHANGES_URL := |
Dan Willemsen | 2ec3e4a | 2017-10-30 13:41:53 -0700 | [diff] [blame] | 80 | |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 81 | # Used to force goals to build. Only use for conditionally defined goals. |
| 82 | .PHONY: FORCE |
| 83 | FORCE: |
| 84 | |
| 85 | ORIGINAL_MAKECMDGOALS := $(MAKECMDGOALS) |
| 86 | |
Jayant Chowdhary | 85fbcf4 | 2017-11-27 15:01:02 -0800 | [diff] [blame] | 87 | dist_goal := $(strip $(filter dist,$(MAKECMDGOALS))) |
| 88 | MAKECMDGOALS := $(strip $(filter-out dist,$(MAKECMDGOALS))) |
| 89 | |
Joe Onorato | bc8abb6 | 2010-01-04 12:57:38 -0800 | [diff] [blame] | 90 | # Tell python not to spam the source tree with .pyc files. This |
| 91 | # only has an effect on python 2.6 and above. |
| 92 | export PYTHONDONTWRITEBYTECODE := 1 |
| 93 | |
Michael Wright | 9dca07e | 2016-01-18 18:13:03 -0800 | [diff] [blame] | 94 | ifneq ($(filter --color=always, $(GREP_OPTIONS)),) |
Ying Wang | d9d0132 | 2015-05-18 11:15:06 -0700 | [diff] [blame] | 95 | $(warning The build system needs unmodified output of grep.) |
Michael Wright | 9dca07e | 2016-01-18 18:13:03 -0800 | [diff] [blame] | 96 | $(error Please remove --color=always from your $$GREP_OPTIONS) |
Ying Wang | d9d0132 | 2015-05-18 11:15:06 -0700 | [diff] [blame] | 97 | endif |
| 98 | |
Dan Willemsen | ce7f8dd | 2017-07-25 00:57:38 -0700 | [diff] [blame] | 99 | UNAME := $(shell uname -sm) |
| 100 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 101 | SRC_TARGET_DIR := $(TOPDIR)build/target |
Ying Wang | 19cc22b | 2012-12-04 15:07:34 -0800 | [diff] [blame] | 102 | SRC_API_DIR := $(TOPDIR)prebuilts/sdk/api |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 103 | SRC_SYSTEM_API_DIR := $(TOPDIR)prebuilts/sdk/system-api |
Michael Wright | 0fb087f | 2015-11-06 15:20:51 +0000 | [diff] [blame] | 104 | SRC_TEST_API_DIR := $(TOPDIR)prebuilts/sdk/test-api |
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 | |
Steven Moreland | a64f336 | 2017-05-31 12:48:55 -0700 | [diff] [blame] | 109 | # Set up efficient math functions which are used in make. |
| 110 | # Here since this file is included by envsetup as well as during build. |
| 111 | include $(BUILD_SYSTEM)/math.mk |
| 112 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 113 | # Various mappings to avoid hard-coding paths all over the place |
| 114 | include $(BUILD_SYSTEM)/pathmap.mk |
| 115 | |
| 116 | # ############################################################### |
| 117 | # Build system internal files |
| 118 | # ############################################################### |
| 119 | |
| 120 | BUILD_COMBOS:= $(BUILD_SYSTEM)/combo |
| 121 | |
| 122 | CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk |
| 123 | BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk |
| 124 | BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk |
| 125 | BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk |
Dan Willemsen | 8dae49c | 2017-02-15 15:48:11 -0800 | [diff] [blame] | 126 | BUILD_HEADER_LIBRARY:= $(BUILD_SYSTEM)/header_library.mk |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 127 | BUILD_AUX_STATIC_LIBRARY:= $(BUILD_SYSTEM)/aux_static_library.mk |
| 128 | BUILD_AUX_EXECUTABLE:= $(BUILD_SYSTEM)/aux_executable.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 129 | BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk |
| 130 | BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 131 | BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk |
| 132 | BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk |
Dima Zavin | f625bf2 | 2010-09-16 00:25:16 -0700 | [diff] [blame] | 133 | BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk |
Jakub Adamek | a08a101 | 2016-10-03 09:56:16 +0100 | [diff] [blame] | 134 | BUILD_RRO_PACKAGE:= $(BUILD_SYSTEM)/build_rro_package.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 135 | BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 136 | BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk |
| 137 | BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 138 | BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk |
| 139 | BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk |
| 140 | BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk |
| 141 | BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk |
| 142 | BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 143 | BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk |
Colin Cross | 52a341b | 2013-11-15 14:37:23 -0800 | [diff] [blame] | 144 | BUILD_NATIVE_BENCHMARK := $(BUILD_SYSTEM)/native_benchmark.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 145 | BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk |
Dan Albert | 36b6f04 | 2015-07-30 16:56:30 -0700 | [diff] [blame] | 146 | BUILD_FUZZ_TEST := $(BUILD_SYSTEM)/fuzz_test.mk |
| 147 | BUILD_HOST_FUZZ_TEST := $(BUILD_SYSTEM)/host_fuzz_test.mk |
Christopher Ferris | 70ca5e5 | 2014-02-04 22:09:16 -0800 | [diff] [blame] | 148 | |
| 149 | BUILD_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/shared_test_lib.mk |
| 150 | BUILD_HOST_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/host_shared_test_lib.mk |
| 151 | BUILD_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/static_test_lib.mk |
| 152 | BUILD_HOST_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/host_static_test_lib.mk |
| 153 | |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 154 | BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk |
Narayan Kamath | 0dd273a | 2013-10-28 13:20:52 +0000 | [diff] [blame] | 155 | BUILD_HOST_DALVIK_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_java_library.mk |
| 156 | BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk |
| 157 | |
Dan Shi | 26efd3a | 2017-11-13 13:38:17 -0800 | [diff] [blame] | 158 | BUILD_HOST_TEST_CONFIG:= $(BUILD_SYSTEM)/host_test_config.mk |
| 159 | BUILD_TARGET_TEST_CONFIG:= $(BUILD_SYSTEM)/target_test_config.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 160 | |
| 161 | # ############################################################### |
| 162 | # Parse out any modifier targets. |
| 163 | # ############################################################### |
| 164 | |
Dan Willemsen | 562bacc | 2017-05-25 22:10:08 -0700 | [diff] [blame] | 165 | hide := @ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 166 | |
Ying Wang | a174261 | 2015-10-28 14:33:40 -0700 | [diff] [blame] | 167 | ################################################################ |
| 168 | # Tools needed in product configuration makefiles. |
| 169 | ################################################################ |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 170 | NORMALIZE_PATH := build/make/tools/normalize_path.py |
Ying Wang | a174261 | 2015-10-28 14:33:40 -0700 | [diff] [blame] | 171 | |
| 172 | # $(1): the paths to be normalized |
| 173 | define normalize-paths |
| 174 | $(if $(1),$(shell $(NORMALIZE_PATH) $(1))) |
| 175 | endef |
| 176 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 177 | # ############################################################### |
| 178 | # Set common values |
| 179 | # ############################################################### |
| 180 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 181 | # Set the extensions used for various packages |
| 182 | COMMON_PACKAGE_SUFFIX := .zip |
| 183 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 184 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 185 | |
Yohann Roussel | f528e13 | 2015-03-13 12:08:26 +0100 | [diff] [blame] | 186 | ifdef TMPDIR |
| 187 | JAVA_TMPDIR_ARG := -Djava.io.tmpdir=$(TMPDIR) |
| 188 | else |
| 189 | JAVA_TMPDIR_ARG := |
| 190 | endif |
| 191 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 192 | # ############################################################### |
| 193 | # Include sub-configuration files |
| 194 | # ############################################################### |
| 195 | |
| 196 | # --------------------------------------------------------------- |
| 197 | # Try to include buildspec.mk, which will try to set stuff up. |
Brian Carlstrom | 1aeee8b | 2013-06-27 12:02:46 -0700 | [diff] [blame] | 198 | # 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] | 199 | # be used, and if that doesn't work, then the default is an |
| 200 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 201 | ifndef ANDROID_BUILDSPEC |
| 202 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 203 | endif |
| 204 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 205 | |
| 206 | # --------------------------------------------------------------- |
| 207 | # Define most of the global variables. These are the ones that |
| 208 | # are specific to the user's build configuration. |
| 209 | include $(BUILD_SYSTEM)/envsetup.mk |
| 210 | |
C. Sean Young | cf46998 | 2015-06-09 12:35:45 -0500 | [diff] [blame] | 211 | # Pruned directory options used when using findleaves.py |
| 212 | # See envsetup.mk for a description of SCAN_EXCLUDE_DIRS |
Colin Cross | ae58e2b | 2016-10-04 16:21:49 -0700 | [diff] [blame] | 213 | FIND_LEAVES_EXCLUDES := $(addprefix --prune=, $(SCAN_EXCLUDE_DIRS) .repo .git) |
C. Sean Young | cf46998 | 2015-06-09 12:35:45 -0500 | [diff] [blame] | 214 | |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 215 | # The build system exposes several variables for where to find the kernel |
| 216 | # headers: |
| 217 | # TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current |
| 218 | # device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers, |
| 219 | # e.g. device/samsung/tuna/kernel-headers. This directory is not |
| 220 | # explicitly set by anyone, the build system always adds this subdir. |
| 221 | # |
| 222 | # TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file |
| 223 | # to allow other directories to be included. This is useful if there's |
| 224 | # some common place where a few headers are being kept for a group |
| 225 | # of devices. For example, device/<vendor>/common/kernel-headers could |
| 226 | # contain some headers for several of <vendor>'s devices. |
| 227 | # |
| 228 | # TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance |
| 229 | # graph. This allows architecture products to provide headers for the |
| 230 | # devices using that architecture. For example, |
| 231 | # hardware/ti/omap4xxx/omap4.mk will specify |
| 232 | # PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4 |
| 233 | # specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers. |
| 234 | # The build system then combines all the values specified by all the |
| 235 | # PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance |
| 236 | # tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable. |
| 237 | # |
| 238 | # The layout of subdirs in any of the kernel-headers dir should mirror the |
| 239 | # layout of the kernel include/ directory. For example, |
| 240 | # device/samsung/tuna/kernel-headers/linux/, |
| 241 | # hardware/ti/omap4xxx/kernel-headers/media/, |
| 242 | # etc. |
| 243 | # |
| 244 | # NOTE: These directories MUST contain post-processed headers using the |
Alex Deymo | be0e7c9 | 2016-04-22 10:18:15 -0700 | [diff] [blame] | 245 | # bionic/libc/kernel/tools/clean_header.py tool. Additionally, the original |
| 246 | # 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] | 247 | # convention, the originals should be checked into original-kernel-headers |
| 248 | # directory of the same parent dir. For example, |
| 249 | # device/samsung/tuna/kernel-headers <----- post-processed |
| 250 | # device/samsung/tuna/original-kernel-headers <----- originals |
| 251 | # |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 252 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 253 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 254 | define validate-kernel-headers |
| 255 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 256 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 257 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 258 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 259 | # also allow the board config to provide additional directories since |
| 260 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 261 | # that both are valid devices but derived_hw needs to use kernel headers |
| 262 | # from base_hw. |
| 263 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 264 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 265 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 266 | |
| 267 | # then add product-inherited includes, to allow for |
| 268 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 269 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 270 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 271 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 272 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 273 | # Clean up/verify variables defined by the board config file. |
| 274 | TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) |
| 275 | TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI)) |
| 276 | ifeq ($(TARGET_CPU_ABI),) |
| 277 | $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk)) |
| 278 | endif |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 279 | TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2)) |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 280 | |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 281 | BOARD_KERNEL_BASE := $(strip $(BOARD_KERNEL_BASE)) |
| 282 | BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE)) |
| 283 | |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 284 | # Commands to generate .toc file common to ELF .so files. |
| 285 | define _gen_toc_command_for_elf |
Shinichiro Hamaji | f0972f7 | 2015-11-05 12:51:08 +0900 | [diff] [blame] | 286 | $(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] | 287 | $(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] | 288 | endef |
| 289 | |
| 290 | # Commands to generate .toc file from Darwin dynamic library. |
| 291 | define _gen_toc_command_for_macho |
| 292 | $(hide) otool -l $(1) | grep LC_ID_DYLIB -A 5 > $(2) |
Colin Cross | cff9a64 | 2016-10-04 17:01:29 -0700 | [diff] [blame] | 293 | $(hide) nm -gP $(1) | cut -f1-2 -d" " | (grep -v U$$ >> $(2) || true) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 294 | endef |
| 295 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 296 | combo_target := HOST_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 297 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 298 | include $(BUILD_SYSTEM)/combo/select.mk |
| 299 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 300 | # Load the 2nd host arch if it's needed. |
| 301 | ifdef HOST_2ND_ARCH |
| 302 | combo_target := HOST_ |
| 303 | combo_2nd_arch_prefix := $(HOST_2ND_ARCH_VAR_PREFIX) |
| 304 | include $(BUILD_SYSTEM)/combo/select.mk |
| 305 | endif |
| 306 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 307 | # Load the windows cross compiler under Linux |
| 308 | ifdef HOST_CROSS_OS |
| 309 | combo_target := HOST_CROSS_ |
| 310 | combo_2nd_arch_prefix := |
| 311 | include $(BUILD_SYSTEM)/combo/select.mk |
Dan Willemsen | 9ecbf83 | 2016-02-05 16:20:19 -0800 | [diff] [blame] | 312 | |
| 313 | ifdef HOST_CROSS_2ND_ARCH |
| 314 | combo_target := HOST_CROSS_ |
| 315 | combo_2nd_arch_prefix := $(HOST_CROSS_2ND_ARCH_VAR_PREFIX) |
| 316 | include $(BUILD_SYSTEM)/combo/select.mk |
| 317 | endif |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 318 | endif |
| 319 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 320 | # on windows, the tools have .exe at the end, and we depend on the |
| 321 | # host config stuff being done first |
| 322 | |
| 323 | combo_target := TARGET_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 324 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 325 | include $(BUILD_SYSTEM)/combo/select.mk |
| 326 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 327 | # Load the 2nd target arch if it's needed. |
| 328 | ifdef TARGET_2ND_ARCH |
| 329 | combo_target := TARGET_ |
| 330 | combo_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX) |
| 331 | include $(BUILD_SYSTEM)/combo/select.mk |
| 332 | endif |
| 333 | |
Dan Willemsen | 20f99a6 | 2017-10-12 01:35:14 -0700 | [diff] [blame] | 334 | ifeq ($(CALLED_FROM_SETUP),true) |
Ying Wang | 57d9060 | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 335 | include $(BUILD_SYSTEM)/ccache.mk |
Shinichiro Hamaji | ee482fd | 2015-08-17 17:38:24 +0900 | [diff] [blame] | 336 | include $(BUILD_SYSTEM)/goma.mk |
Ying Wang | 57d9060 | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 337 | |
Colin Cross | 5a5befb | 2016-08-31 09:35:32 -0700 | [diff] [blame] | 338 | export CC_WRAPPER |
| 339 | export CXX_WRAPPER |
Yoshisato Yanagisawa | 4f3e568 | 2017-06-05 18:08:36 +0900 | [diff] [blame] | 340 | export JAVAC_WRAPPER |
Colin Cross | 44005d4 | 2016-08-31 13:32:39 -0700 | [diff] [blame] | 341 | endif |
Colin Cross | 5a5befb | 2016-08-31 09:35:32 -0700 | [diff] [blame] | 342 | |
Colin Cross | a3339e9 | 2014-04-30 18:09:13 -0700 | [diff] [blame] | 343 | ifdef TARGET_PREFER_32_BIT |
| 344 | TARGET_PREFER_32_BIT_APPS := true |
| 345 | TARGET_PREFER_32_BIT_EXECUTABLES := true |
| 346 | endif |
| 347 | |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 348 | ifeq (,$(TARGET_SUPPORTS_32_BIT_APPS)$(TARGET_SUPPORTS_64_BIT_APPS)) |
| 349 | TARGET_SUPPORTS_32_BIT_APPS := true |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 350 | endif |
| 351 | |
| 352 | # "ro.product.cpu.abilist32" and "ro.product.cpu.abilist64" are |
| 353 | # comma separated lists of the 32 and 64 bit ABIs (in order of |
| 354 | # preference) that the target supports. If TARGET_CPU_ABI_LIST_{32,64}_BIT |
| 355 | # are defined by the board config, we use them. Else, we construct |
| 356 | # these lists based on whether TARGET_IS_64_BIT is set. |
| 357 | # |
| 358 | # Note that this assumes that the 2ND_CPU_ABI for a 64 bit target |
| 359 | # 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] | 360 | # be overriden in the board configuration. |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 361 | ifeq (,$(TARGET_CPU_ABI_LIST_64_BIT)) |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 362 | ifeq (true|true,$(TARGET_IS_64_BIT)|$(TARGET_SUPPORTS_64_BIT_APPS)) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 363 | TARGET_CPU_ABI_LIST_64_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 364 | endif |
| 365 | endif |
| 366 | |
| 367 | ifeq (,$(TARGET_CPU_ABI_LIST_32_BIT)) |
| 368 | ifneq (true,$(TARGET_IS_64_BIT)) |
| 369 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 370 | else |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 371 | ifeq (true,$(TARGET_SUPPORTS_32_BIT_APPS)) |
| 372 | # For a 64 bit target, assume that the 2ND_CPU_ABI |
| 373 | # is a 32 bit ABI. |
| 374 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_2ND_CPU_ABI) $(TARGET_2ND_CPU_ABI2) |
| 375 | endif |
| 376 | endif |
| 377 | endif |
| 378 | |
| 379 | # "ro.product.cpu.abilist" is a comma separated list of ABIs (in order |
| 380 | # of preference) that the target supports. If a TARGET_CPU_ABI_LIST |
| 381 | # is specified by the board configuration, we use that. If not, we |
| 382 | # build a list out of the TARGET_CPU_ABIs specified by the config. |
| 383 | ifeq (,$(TARGET_CPU_ABI_LIST)) |
| 384 | ifeq ($(TARGET_IS_64_BIT)|$(TARGET_PREFER_32_BIT_APPS),true|true) |
| 385 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_32_BIT) $(TARGET_CPU_ABI_LIST_64_BIT) |
| 386 | else |
| 387 | 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] | 388 | endif |
| 389 | endif |
| 390 | |
| 391 | # Strip whitespace from the ABI list string. |
| 392 | TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST))) |
| 393 | TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT))) |
| 394 | TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT))) |
| 395 | |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 396 | # GCC version selection |
| 397 | TARGET_GCC_VERSION := 4.9 |
| 398 | ifdef TARGET_2ND_ARCH |
| 399 | 2ND_TARGET_GCC_VERSION := 4.9 |
| 400 | endif |
| 401 | |
Dan Willemsen | e68100e | 2016-09-26 17:37:19 -0700 | [diff] [blame] | 402 | # Normalize WITH_STATIC_ANALYZER |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 403 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),0) |
| 404 | WITH_STATIC_ANALYZER := |
| 405 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 406 | |
Chih-Hung Hsieh | 765c1ea | 2016-02-02 11:30:39 -0800 | [diff] [blame] | 407 | # define clang/llvm versions and base directory. |
| 408 | include $(BUILD_SYSTEM)/clang/versions.mk |
| 409 | |
Chih-Hung Hsieh | a9a55c7 | 2016-03-31 16:30:23 -0700 | [diff] [blame] | 410 | # Unset WITH_TIDY_ONLY if global WITH_TIDY_ONLY is not true nor 1. |
| 411 | ifeq (,$(filter 1 true,$(WITH_TIDY_ONLY))) |
| 412 | WITH_TIDY_ONLY := |
| 413 | endif |
| 414 | |
| 415 | PATH_TO_CLANG_TIDY := \ |
| 416 | $(LLVM_PREBUILTS_BASE)/$(BUILD_OS)-x86/$(LLVM_PREBUILTS_VERSION)/bin/clang-tidy |
| 417 | ifeq ($(wildcard $(PATH_TO_CLANG_TIDY)),) |
| 418 | ifneq (,$(filter 1 true,$(WITH_TIDY))) |
| 419 | $(warning *** Disable WITH_TIDY because $(PATH_TO_CLANG_TIDY) does not exist) |
| 420 | endif |
| 421 | PATH_TO_CLANG_TIDY := |
| 422 | endif |
| 423 | |
Dan Willemsen | e68100e | 2016-09-26 17:37:19 -0700 | [diff] [blame] | 424 | # Disable WITH_STATIC_ANALYZER if tool can't be found |
Chih-Hung Hsieh | 765c1ea | 2016-02-02 11:30:39 -0800 | [diff] [blame] | 425 | SYNTAX_TOOLS_PREFIX := \ |
| 426 | $(LLVM_PREBUILTS_BASE)/$(BUILD_OS)-x86/$(LLVM_PREBUILTS_VERSION)/tools/scan-build/libexec |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 427 | ifneq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 428 | ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer),) |
| 429 | $(warning *** Disable WITH_STATIC_ANALYZER because $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer does not exist) |
| 430 | WITH_STATIC_ANALYZER := |
| 431 | endif |
| 432 | endif |
Andrew Hsieh | e7c2d14 | 2013-08-27 17:55:46 +0800 | [diff] [blame] | 433 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 434 | # Pick a Java compiler. |
| 435 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 436 | |
| 437 | # --------------------------------------------------------------- |
| 438 | # Check that the configuration is current. We check that |
| 439 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 440 | # Don't fail if we're called from envsetup, so they have a |
| 441 | # chance to update their environment. |
| 442 | |
| 443 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 444 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 445 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 446 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 447 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 448 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 449 | $(info *** - Re-run lunch or choosecombo) |
| 450 | $(info *** If you use buildspec.mk:) |
| 451 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 452 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 453 | $(error bailing..) |
| 454 | endif |
| 455 | endif |
| 456 | endif |
| 457 | |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 458 | # Set up PDK so we can use TARGET_BUILD_PDK to select prebuilt tools below |
| 459 | .PHONY: pdk fusion |
| 460 | pdk fusion: $(DEFAULT_GOAL) |
| 461 | |
| 462 | # What to build: |
| 463 | # pdk fusion if: |
| 464 | # 1) PDK_FUSION_PLATFORM_ZIP is passed in from the environment |
| 465 | # or |
| 466 | # 2) the platform.zip exists in the default location |
| 467 | # or |
| 468 | # 3) fusion is a command line build goal, |
| 469 | # PDK_FUSION_PLATFORM_ZIP is needed anyway, then do we need the 'fusion' goal? |
| 470 | # otherwise pdk only if: |
| 471 | # 1) pdk is a command line build goal |
| 472 | # or |
| 473 | # 2) TARGET_BUILD_PDK is passed in from the environment |
| 474 | |
| 475 | # if PDK_FUSION_PLATFORM_ZIP is specified, do not override. |
| 476 | ifndef PDK_FUSION_PLATFORM_ZIP |
| 477 | # Most PDK project paths should be using vendor/pdk/TARGET_DEVICE |
| 478 | # but some legacy ones (e.g. mini_armv7a_neon generic PDK) were setup |
| 479 | # with vendor/pdk/TARGET_PRODUCT. |
| 480 | _pdk_fusion_default_platform_zip = $(strip \ |
| 481 | $(wildcard vendor/pdk/$(TARGET_DEVICE)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip) \ |
| 482 | $(wildcard vendor/pdk/$(TARGET_DEVICE)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip) \ |
| 483 | $(wildcard vendor/pdk/$(TARGET_PRODUCT)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip) \ |
| 484 | $(wildcard vendor/pdk/$(TARGET_PRODUCT)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip)) |
| 485 | ifneq (,$(_pdk_fusion_default_platform_zip)) |
| 486 | PDK_FUSION_PLATFORM_ZIP := $(word 1, $(_pdk_fusion_default_platform_zip)) |
| 487 | TARGET_BUILD_PDK := true |
| 488 | endif # _pdk_fusion_default_platform_zip |
| 489 | endif # !PDK_FUSION_PLATFORM_ZIP |
| 490 | |
| 491 | ifneq (,$(filter pdk fusion, $(MAKECMDGOALS))) |
| 492 | TARGET_BUILD_PDK := true |
| 493 | ifneq (,$(filter fusion, $(MAKECMDGOALS))) |
| 494 | ifndef PDK_FUSION_PLATFORM_ZIP |
| 495 | $(error Specify PDK_FUSION_PLATFORM_ZIP to do a PDK fusion.) |
| 496 | endif |
| 497 | endif # fusion |
| 498 | endif # pdk or fusion |
| 499 | |
| 500 | ifdef PDK_FUSION_PLATFORM_ZIP |
| 501 | TARGET_BUILD_PDK := true |
| 502 | ifeq (,$(wildcard $(PDK_FUSION_PLATFORM_ZIP))) |
| 503 | $(error Cannot find file $(PDK_FUSION_PLATFORM_ZIP).) |
| 504 | endif |
| 505 | endif |
| 506 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 507 | BUILD_PLATFORM_ZIP := $(filter platform platform-java,$(MAKECMDGOALS)) |
| 508 | |
Dan Willemsen | ccc4816 | 2017-06-02 15:25:20 -0700 | [diff] [blame] | 509 | # --------------------------------------------------------------- |
| 510 | # Whether we can expect a full build graph |
| 511 | ALLOW_MISSING_DEPENDENCIES := $(filter true,$(ALLOW_MISSING_DEPENDENCIES)) |
| 512 | ifneq ($(TARGET_BUILD_APPS),) |
| 513 | ALLOW_MISSING_DEPENDENCIES := true |
| 514 | endif |
| 515 | ifeq ($(TARGET_BUILD_PDK),true) |
| 516 | ALLOW_MISSING_DEPENDENCIES := true |
| 517 | endif |
| 518 | ifneq ($(filter true,$(SOONG_ALLOW_MISSING_DEPENDENCIES)),) |
| 519 | ALLOW_MISSING_DEPENDENCIES := true |
| 520 | endif |
| 521 | ifneq ($(ONE_SHOT_MAKEFILE),) |
| 522 | ALLOW_MISSING_DEPENDENCIES := true |
| 523 | endif |
| 524 | .KATI_READONLY := ALLOW_MISSING_DEPENDENCIES |
| 525 | |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 526 | prebuilt_sdk_tools := prebuilts/sdk/tools |
| 527 | prebuilt_sdk_tools_bin := $(prebuilt_sdk_tools)/$(HOST_OS)/bin |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 528 | |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 529 | # Always use prebuilts for ckati and makeparallel |
| 530 | prebuilt_build_tools := prebuilts/build-tools |
| 531 | prebuilt_build_tools_wrappers := prebuilts/build-tools/common/bin |
| 532 | prebuilt_build_tools_jars := prebuilts/build-tools/common/framework |
| 533 | ifeq ($(filter address,$(SANITIZE_HOST)),) |
| 534 | prebuilt_build_tools_bin := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/bin |
| 535 | else |
| 536 | prebuilt_build_tools_bin := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/asan/bin |
| 537 | endif |
| 538 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 539 | USE_PREBUILT_SDK_TOOLS_IN_PLACE := true |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 540 | |
Alan Leung | 65168a4 | 2017-11-01 17:49:52 -0700 | [diff] [blame] | 541 | # Work around for b/68406220 |
| 542 | # This should match the soong version. |
| 543 | ifndef USE_D8 |
| 544 | USE_D8 := true |
| 545 | endif |
| 546 | |
Søren Gjesse | 896c30a | 2017-11-29 15:58:04 +0100 | [diff] [blame] | 547 | # Default R8 behavior when USE_R8 is not specified. |
| 548 | ifndef USE_R8 |
Søren Gjesse | cd13676 | 2017-12-15 15:18:57 +0000 | [diff] [blame] | 549 | USE_R8 := false |
Søren Gjesse | 896c30a | 2017-11-29 15:58:04 +0100 | [diff] [blame] | 550 | endif |
| 551 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 552 | # |
| 553 | # Tools that are prebuilts for TARGET_BUILD_APPS |
| 554 | # |
| 555 | ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) |
| 556 | AIDL := $(HOST_OUT_EXECUTABLES)/aidl |
| 557 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt |
| 558 | AAPT2 := $(HOST_OUT_EXECUTABLES)/aapt2 |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 559 | DESUGAR := $(HOST_OUT_JAVA_LIBRARIES)/desugar.jar |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 560 | MAINDEXCLASSES := $(HOST_OUT_EXECUTABLES)/mainDexClasses |
| 561 | SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 562 | SIGNAPK_JNI_LIBRARY_PATH := $(HOST_OUT_SHARED_LIBRARIES) |
| 563 | ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign |
Colin Cross | e44e75a | 2017-07-18 05:22:59 +0000 | [diff] [blame] | 564 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 565 | else # TARGET_BUILD_APPS || TARGET_BUILD_PDK |
Dan Willemsen | 6353304 | 2017-11-17 18:39:55 -0800 | [diff] [blame] | 566 | AIDL := $(prebuilt_build_tools_bin)/aidl |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 567 | AAPT := $(prebuilt_sdk_tools_bin)/aapt |
| 568 | AAPT2 := $(prebuilt_sdk_tools_bin)/aapt2 |
Colin Cross | 5d969a3 | 2017-09-22 15:03:38 -0700 | [diff] [blame] | 569 | DESUGAR := $(prebuilt_build_tools_jars)/desugar.jar |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 570 | MAINDEXCLASSES := $(prebuilt_sdk_tools)/mainDexClasses |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 571 | SIGNAPK_JAR := $(prebuilt_sdk_tools)/lib/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 572 | SIGNAPK_JNI_LIBRARY_PATH := $(prebuilt_sdk_tools)/$(HOST_OS)/lib64 |
Dan Willemsen | 6353304 | 2017-11-17 18:39:55 -0800 | [diff] [blame] | 573 | ZIPALIGN := $(prebuilt_build_tools_bin)/zipalign |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 574 | endif # TARGET_BUILD_APPS || TARGET_BUILD_PDK |
| 575 | |
Alan Leung | 7d6144d | 2017-11-16 15:51:07 -0800 | [diff] [blame] | 576 | R8_COMPAT_PROGUARD := $(HOST_OUT_EXECUTABLES)/r8-compat-proguard |
Søren Gjesse | c66d297 | 2017-11-07 16:18:28 +0100 | [diff] [blame] | 577 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 578 | ifeq (,$(TARGET_BUILD_APPS)) |
| 579 | # Use RenderScript prebuilts for unbundled builds but not PDK builds |
| 580 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc |
| 581 | BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat |
Alan Leung | 83857b6 | 2017-05-11 17:44:59 -0700 | [diff] [blame] | 582 | else |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 583 | LLVM_RS_CC := $(prebuilt_sdk_tools_bin)/llvm-rs-cc |
| 584 | BCC_COMPAT := $(prebuilt_sdk_tools_bin)/bcc_compat |
| 585 | endif # TARGET_BUILD_PDK |
Alan Leung | 83857b6 | 2017-05-11 17:44:59 -0700 | [diff] [blame] | 586 | |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 587 | prebuilt_sdk_tools := |
| 588 | prebuilt_sdk_tools_bin := |
Colin Cross | 5f89212 | 2017-04-17 14:59:43 -0700 | [diff] [blame] | 589 | |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 590 | ACP := $(prebuilt_build_tools_bin)/acp |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 591 | CKATI := $(prebuilt_build_tools_bin)/ckati |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 592 | DEPMOD := $(HOST_OUT_EXECUTABLES)/depmod |
| 593 | FILESLIST := $(SOONG_HOST_OUT_EXECUTABLES)/fileslist |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 594 | MAKEPARALLEL := $(prebuilt_build_tools_bin)/makeparallel |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 595 | SOONG_JAVAC_WRAPPER := $(SOONG_HOST_OUT_EXECUTABLES)/soong_javac_wrapper |
| 596 | SOONG_ZIP := $(SOONG_HOST_OUT_EXECUTABLES)/soong_zip |
Nan Zhang | 9bd5405 | 2017-09-13 13:13:53 -0700 | [diff] [blame] | 597 | MERGE_ZIPS := $(SOONG_HOST_OUT_EXECUTABLES)/merge_zips |
Colin Cross | cd20d59 | 2017-07-06 13:42:00 -0700 | [diff] [blame] | 598 | ZIP2ZIP := $(SOONG_HOST_OUT_EXECUTABLES)/zip2zip |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 599 | ZIPTIME := $(prebuilt_build_tools_bin)/ziptime |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 600 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 601 | # --------------------------------------------------------------- |
| 602 | # Generic tools. |
| 603 | |
Ying Wang | 6374153 | 2014-05-16 09:37:23 -0700 | [diff] [blame] | 604 | LEX := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/flex/flex-2.5.39 |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 605 | # The default PKGDATADIR built in the prebuilt bison is a relative path |
| 606 | # external/bison/data. |
| 607 | # To run bison from elsewhere you need to set up enviromental variable |
| 608 | # BISON_PKGDATADIR. |
| 609 | BISON_PKGDATADIR := $(PWD)/external/bison/data |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 610 | BISON := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/bison/bison |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 611 | YACC := $(BISON) -d |
Shinichiro Hamaji | b708bc5 | 2016-04-05 20:12:48 +0900 | [diff] [blame] | 612 | BISON_DATA := $(wildcard external/bison/data/* external/bison/data/*/*) |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 613 | |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 614 | YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm |
| 615 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 616 | DOXYGEN:= doxygen |
Steve Fung | cb2e67f | 2015-09-24 01:40:52 -0700 | [diff] [blame] | 617 | ifeq ($(HOST_OS),linux) |
| 618 | BREAKPAD_DUMP_SYMS := $(HOST_OUT_EXECUTABLES)/dump_syms |
| 619 | else |
| 620 | # For non-supported hosts, do not generate breakpad symbols. |
| 621 | BREAKPAD_GENERATE_SYMBOLS := false |
| 622 | endif |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 623 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
Shinichiro Hamaji | a3184dc | 2016-04-05 17:34:51 +0900 | [diff] [blame] | 624 | NANOPB_SRCS := external/nanopb-c/generator/protoc-gen-nanopb \ |
| 625 | $(wildcard external/nanopb-c/generator/*.py \ |
| 626 | external/nanopb-c/generator/google/*.py \ |
| 627 | external/nanopb-c/generator/proto/*.py) |
Keun Soo Yim | 3d48475 | 2016-02-19 11:06:58 -0800 | [diff] [blame] | 628 | VTSC := $(HOST_OUT_EXECUTABLES)/vtsc$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 629 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 630 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
Alex Deymo | b10e07a | 2017-11-09 23:53:42 +0100 | [diff] [blame] | 631 | BROTLI := $(HOST_OUT_EXECUTABLES)/brotli$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 632 | ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 633 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 634 | else |
| 635 | MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG) |
| 636 | endif |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 637 | ifeq (,$(strip $(BOARD_CUSTOM_BPTTOOL))) |
| 638 | BPTTOOL := $(HOST_OUT_EXECUTABLES)/bpttool$(HOST_EXECUTABLE_SUFFIX) |
| 639 | else |
| 640 | BPTTOOL := $(BOARD_CUSTOM_BPTTOOL) |
| 641 | endif |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 642 | ifeq (,$(strip $(BOARD_CUSTOM_AVBTOOL))) |
| 643 | AVBTOOL := $(HOST_OUT_EXECUTABLES)/avbtool$(HOST_EXECUTABLE_SUFFIX) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 644 | else |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 645 | AVBTOOL := $(BOARD_CUSTOM_AVBTOOL) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 646 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 647 | APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX) |
| 648 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
Adrien Schildknecht | 9a072cc | 2016-11-18 17:06:29 -0800 | [diff] [blame] | 649 | MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/mke2fs$(HOST_EXECUTABLE_SUFFIX) |
| 650 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg_mke2fs.sh |
Jin Qian | abcec5e | 2017-03-10 16:53:45 -0800 | [diff] [blame] | 651 | MKE2FS_CONF := system/extras/ext4_utils/mke2fs.conf |
Adrien Schildknecht | 9a072cc | 2016-11-18 17:06:29 -0800 | [diff] [blame] | 652 | 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] | 653 | MAKE_SQUASHFS := $(HOST_OUT_EXECUTABLES)/mksquashfs$(HOST_EXECUTABLE_SUFFIX) |
| 654 | MKSQUASHFSUSERIMG := $(HOST_OUT_EXECUTABLES)/mksquashfsimage.sh |
JP Abgrall | 5bfed5a | 2014-06-16 14:17:40 -0700 | [diff] [blame] | 655 | MAKE_F2FS := $(HOST_OUT_EXECUTABLES)/make_f2fs$(HOST_EXECUTABLE_SUFFIX) |
| 656 | MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 657 | SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX) |
Mohamad Ayyash | 353265b | 2015-06-24 15:42:19 -0700 | [diff] [blame] | 658 | IMG2SIMG := $(HOST_OUT_EXECUTABLES)/img2simg$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 659 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 660 | MKTARBALL := build/make/tools/mktarball.sh |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 661 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 662 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Ying Wang | ed0361f | 2015-04-19 09:55:39 -0700 | [diff] [blame] | 663 | DATA_BINDING_COMPILER := $(HOST_OUT_JAVA_LIBRARIES)/databinding-compiler.jar |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 664 | FAT16COPY := build/make/tools/fat16copy.py |
| 665 | CHECK_LINK_TYPE := build/make/tools/check_link_type.py |
Yohann Roussel | 2809666 | 2015-02-02 12:18:20 +0100 | [diff] [blame] | 666 | |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 667 | PROGUARD := external/proguard/bin/proguard.sh |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 668 | JAVATAGS := build/make/tools/java-event-log-tags.py |
| 669 | MERGETAGS := build/make/tools/merge-event-log-tags.py |
| 670 | BUILD_IMAGE_SRCS := $(wildcard build/make/tools/releasetools/*.py) |
Colin Cross | 8a30f72 | 2014-04-28 16:27:32 -0700 | [diff] [blame] | 671 | APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg |
| 672 | VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer |
Colin Cross | 477cf2b | 2014-04-16 18:49:56 -0700 | [diff] [blame] | 673 | BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 674 | BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer |
Tao Bao | e98fb7a | 2017-02-17 14:11:13 -0800 | [diff] [blame] | 675 | FUTILITY := $(HOST_OUT_EXECUTABLES)/futility-host |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 676 | VBOOT_SIGNER := prebuilts/misc/scripts/vboot_signer/vboot_signer.sh |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 677 | FEC := $(HOST_OUT_EXECUTABLES)/fec |
Tao Bao | e53c6e7 | 2017-04-19 15:54:22 -0700 | [diff] [blame] | 678 | BRILLO_UPDATE_PAYLOAD := $(HOST_OUT_EXECUTABLES)/brillo_update_payload |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 679 | |
Shinichiro Hamaji | f972a4a | 2015-12-09 18:06:20 +0900 | [diff] [blame] | 680 | DEXDUMP := $(HOST_OUT_EXECUTABLES)/dexdump2$(BUILD_EXECUTABLE_SUFFIX) |
Mathieu Chartier | a4b993b | 2017-02-28 11:17:32 -0800 | [diff] [blame] | 681 | PROFMAN := $(HOST_OUT_EXECUTABLES)/profman |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 682 | |
Dmitriy Ivanov | 4c2d1a6 | 2015-04-20 16:59:05 -0700 | [diff] [blame] | 683 | # relocation packer |
| 684 | RELOCATION_PACKER := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/relocation_packer/relocation_packer |
| 685 | |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 686 | FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin |
| 687 | FINDBUGS := $(FINDBUGS_DIR)/findbugs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 688 | |
Ying Wang | dc7fee9 | 2014-02-05 18:24:45 -0800 | [diff] [blame] | 689 | # Tool to merge AndroidManifest.xmls |
Colin Cross | 710a413 | 2017-09-08 13:29:54 -0700 | [diff] [blame] | 690 | ANDROID_MANIFEST_MERGER_CLASSPATH := \ |
| 691 | prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/26.0.0-beta2/manifest-merger-26.0.0-beta2.jar \ |
| 692 | prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-beta2/sdk-common-26.0.0-beta2.jar \ |
| 693 | prebuilts/gradle-plugin/com/android/tools/common/26.0.0-beta2/common-26.0.0-beta2.jar \ |
| 694 | prebuilts/misc/common/guava/guava-21.0.jar |
| 695 | ANDROID_MANIFEST_MERGER := $(JAVA) \ |
| 696 | -classpath $(subst $(space),:,$(strip $(ANDROID_MANIFEST_MERGER_CLASSPATH))) \ |
| 697 | com.android.manifmerger.Merger |
Ying Wang | dc7fee9 | 2014-02-05 18:24:45 -0800 | [diff] [blame] | 698 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 699 | COLUMN:= column |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 700 | |
Tobias Thierer | f6bd495 | 2017-11-15 20:55:03 +0000 | [diff] [blame] | 701 | ifeq ($(EXPERIMENTAL_USE_OPENJDK9),) |
| 702 | USE_OPENJDK9 := |
| 703 | TARGET_OPENJDK9 := |
| 704 | else ifeq ($(EXPERIMENTAL_USE_OPENJDK9),false) |
| 705 | USE_OPENJDK9 := |
| 706 | TARGET_OPENJDK9 := |
| 707 | else ifeq ($(EXPERIMENTAL_USE_OPENJDK9),1.8) |
| 708 | USE_OPENJDK9 := true |
| 709 | TARGET_OPENJDK9 := |
| 710 | else ifeq ($(EXPERIMENTAL_USE_OPENJDK9),true) |
| 711 | USE_OPENJDK9 := true |
| 712 | TARGET_OPENJDK9 := true |
| 713 | endif |
| 714 | |
| 715 | # Path to tools.jar, or empty if USE_OPENJDK9 is unset |
Tobias Thierer | 3c4c0b6 | 2017-05-17 23:26:00 +0100 | [diff] [blame] | 716 | HOST_JDK_TOOLS_JAR := |
| 717 | # TODO: Remove HOST_JDK_TOOLS_JAR and all references to it once OpenJDK 8 |
Tobias Thierer | f6bd495 | 2017-11-15 20:55:03 +0000 | [diff] [blame] | 718 | # toolchains are no longer supported (i.e. when USE_OPENJDK9 is enforced). |
| 719 | # http://b/38418220 |
| 720 | ifndef USE_OPENJDK9 |
Colin Cross | e97e693 | 2017-06-30 16:01:45 -0700 | [diff] [blame] | 721 | HOST_JDK_TOOLS_JAR := $(ANDROID_JAVA_TOOLCHAIN)/../lib/tools.jar |
Tobias Thierer | 7ef760b | 2017-11-17 13:02:12 +0000 | [diff] [blame] | 722 | endif # ifndef USE_OPENJDK9 |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 723 | |
| 724 | # It's called md5 on Mac OS and md5sum on Linux |
| 725 | ifeq ($(HOST_OS),darwin) |
| 726 | MD5SUM:=md5 -q |
| 727 | else |
| 728 | MD5SUM:=md5sum |
| 729 | endif |
| 730 | |
Tobias Thierer | 3c4c0b6 | 2017-05-17 23:26:00 +0100 | [diff] [blame] | 731 | APICHECK_CLASSPATH_ENTRIES := \ |
| 732 | $(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
| 733 | $(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
| 734 | $(HOST_JDK_TOOLS_JAR) \ |
| 735 | ) |
| 736 | APICHECK_CLASSPATH := $(subst $(space),:,$(strip $(APICHECK_CLASSPATH_ENTRIES))) |
| 737 | |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 738 | APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)" |
| 739 | |
Steven Moreland | 2b32469 | 2017-05-18 15:26:59 -0700 | [diff] [blame] | 740 | # Boolean variable determining if Treble is fully enabled |
| 741 | PRODUCT_FULL_TREBLE := false |
| 742 | ifneq ($(PRODUCT_FULL_TREBLE_OVERRIDE),) |
| 743 | PRODUCT_FULL_TREBLE := $(PRODUCT_FULL_TREBLE_OVERRIDE) |
| 744 | else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 745 | #$(warning no product shipping level defined) |
| 746 | else ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),26),) |
| 747 | PRODUCT_FULL_TREBLE := true |
| 748 | endif |
| 749 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame^] | 750 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior and remove |
| 751 | # references to it here and below. |
| 752 | ifdef PRODUCT_NOTICE_SPLIT_OVERRIDE |
| 753 | $(error PRODUCT_NOTICE_SPLIT_OVERRIDE cannot be set.) |
| 754 | endif |
| 755 | |
Steven Moreland | 33fdd8c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 756 | requirements := \ |
| 757 | PRODUCT_TREBLE_LINKER_NAMESPACES \ |
| 758 | PRODUCT_SEPOLICY_SPLIT \ |
| 759 | PRODUCT_ENFORCE_VINTF_MANIFEST \ |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame^] | 760 | PRODUCT_NOTICE_SPLIT |
Steven Moreland | 33fdd8c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 761 | |
| 762 | # If it is overriden, then the requirement override is taken, otherwise it's |
| 763 | # PRODUCT_FULL_TREBLE |
| 764 | $(foreach req,$(requirements),$(eval \ |
| 765 | $(req) := $(if $($(req)_OVERRIDE),$($(req)_OVERRIDE),$(PRODUCT_FULL_TREBLE)))) |
Steven Moreland | 33fdd8c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 766 | |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 767 | PRODUCT_FULL_TREBLE_OVERRIDE ?= |
| 768 | $(foreach req,$(requirements),$(eval $(req)_OVERRIDE ?=)) |
| 769 | |
Steven Moreland | 33fdd8c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 770 | .KATI_READONLY := \ |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 771 | PRODUCT_FULL_TREBLE_OVERRIDE \ |
| 772 | $(foreach req,$(requirements),$(req)_OVERRIDE) \ |
Steven Moreland | 33fdd8c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 773 | $(requirements) \ |
Steven Moreland | 0e6301c | 2017-11-17 10:47:30 -0800 | [diff] [blame] | 774 | PRODUCT_FULL_TREBLE \ |
Steven Moreland | 33fdd8c | 2017-11-09 10:15:31 -0800 | [diff] [blame] | 775 | |
| 776 | requirements := |
| 777 | |
Dan Willemsen | e49ee70 | 2017-09-29 15:32:22 -0700 | [diff] [blame] | 778 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 779 | ifneq ($(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),27),) |
| 780 | ifneq ($(TARGET_USES_MKE2FS),true) |
| 781 | $(error When PRODUCT_SHIPPING_API_LEVEL >= 27, TARGET_USES_MKE2FS must be true) |
| 782 | endif |
| 783 | endif |
| 784 | endif |
| 785 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 786 | # The default key if not set as LOCAL_CERTIFICATE |
| 787 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 788 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 789 | else |
| 790 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey |
| 791 | endif |
| 792 | |
Yifan Hong | aa21221 | 2017-04-14 00:00:46 -0700 | [diff] [blame] | 793 | FRAMEWORK_MANIFEST_FILE := system/libhidl/manifest.xml |
Yifan Hong | f61b430 | 2017-05-26 15:36:14 -0700 | [diff] [blame] | 794 | |
| 795 | # Compatibility matrix versioning: |
| 796 | # MATRIX_LEVEL_OVERRIDE defined: MATRIX_LEVEL = MATRIX_LEVEL_OVERRIDE |
| 797 | # MATRIX_LEVEL_OVERRIDE undefined: |
| 798 | # FULL_TREBLE != true: MATRIX_LEVEL = legacy |
| 799 | # FULL_TREBLE == true: |
| 800 | # SHIPPING_API_LEVEL defined: MATRIX_LEVEL = SHIPPING_API_LEVEL |
| 801 | # SHIPPING_API_LEVEL undefined: MATRIX_LEVEL = PLATFORM_SDK_VERSION |
| 802 | # MATRIX_LEVEL == legacy => legacy.xml |
| 803 | # MATRIX_LEVEL <= 26 => 26.xml |
| 804 | # MATRIX_LEVEL == 27 => 27.xml # define when 27 releases |
| 805 | # MATRIX_LEVEL == 28 => 28.xml # define when 28 releases |
| 806 | # ... |
| 807 | # otherwise => current.xml |
| 808 | |
| 809 | ifneq ($(PRODUCT_COMPATIBILITY_MATRIX_LEVEL_OVERRIDE),) |
| 810 | PRODUCT_COMPATIBILITY_MATRIX_LEVEL := $(PRODUCT_COMPATIBILITY_MATRIX_LEVEL_OVERRIDE) |
| 811 | else ifneq ($(PRODUCT_FULL_TREBLE),true) |
| 812 | PRODUCT_COMPATIBILITY_MATRIX_LEVEL := legacy |
| 813 | else ifneq ($(PRODUCT_SHIPPING_API_LEVEL),) |
| 814 | PRODUCT_COMPATIBILITY_MATRIX_LEVEL := $(PRODUCT_SHIPPING_API_LEVEL) |
| 815 | else |
| 816 | PRODUCT_COMPATIBILITY_MATRIX_LEVEL := $(PLATFORM_SDK_VERSION) |
| 817 | endif |
| 818 | |
| 819 | ifeq ($(strip $(PRODUCT_COMPATIBILITY_MATRIX_LEVEL)),legacy) |
| 820 | FRAMEWORK_COMPATIBILITY_MATRIX_FILE := hardware/interfaces/compatibility_matrix.legacy.xml |
Steven Moreland | 5bce7f2 | 2017-08-29 14:41:16 -0700 | [diff] [blame] | 821 | else ifeq ($(call math_gt_or_eq,$(PRODUCT_COMPATIBILITY_MATRIX_LEVEL),26),) |
| 822 | # All PRODUCT_FULL_TREBLE devices with shipping API levels < 26 get the level 26 manifest |
| 823 | # as that is the first. |
Yifan Hong | f61b430 | 2017-05-26 15:36:14 -0700 | [diff] [blame] | 824 | FRAMEWORK_COMPATIBILITY_MATRIX_FILE := hardware/interfaces/compatibility_matrix.26.xml |
Steven Moreland | 5bce7f2 | 2017-08-29 14:41:16 -0700 | [diff] [blame] | 825 | else ifeq ($(call math_gt_or_eq,$(PRODUCT_COMPATIBILITY_MATRIX_LEVEL),28),) |
| 826 | # All shipping API levels with released compatibility matrices get the corresponding matrix. |
| 827 | FRAMEWORK_COMPATIBILITY_MATRIX_FILE := \ |
| 828 | hardware/interfaces/compatibility_matrix.$(PRODUCT_COMPATIBILITY_MATRIX_LEVEL).xml |
Yifan Hong | f61b430 | 2017-05-26 15:36:14 -0700 | [diff] [blame] | 829 | else |
| 830 | FRAMEWORK_COMPATIBILITY_MATRIX_FILE := hardware/interfaces/compatibility_matrix.current.xml |
| 831 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 832 | |
Colin Cross | e96bfdb | 2017-11-03 15:49:25 -0700 | [diff] [blame] | 833 | BUILD_NUMBER_FROM_FILE := $$(cat $(OUT_DIR)/build_number.txt) |
| 834 | BUILD_DATETIME_FROM_FILE := $$(cat $(OUT_DIR)/build_date.txt) |
| 835 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 836 | # ############################################################### |
| 837 | # Set up final options. |
| 838 | # ############################################################### |
| 839 | |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 840 | # We run gcc/clang with PWD=/proc/self/cwd to remove the $TOP |
| 841 | # from the debug output. That way two builds in two different |
| 842 | # directories will create the same output. |
| 843 | # /proc doesn't exist on Darwin. |
| 844 | ifeq ($(HOST_OS),linux) |
| 845 | RELATIVE_PWD := PWD=/proc/self/cwd |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 846 | else |
| 847 | RELATIVE_PWD := |
| 848 | endif |
| 849 | |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 850 | TARGET_PROJECT_INCLUDES := |
Dan Willemsen | bab0fa6 | 2016-11-18 14:05:39 -0800 | [diff] [blame] | 851 | TARGET_PROJECT_SYSTEM_INCLUDES := \ |
Dima Zavin | 8e4042c | 2012-03-30 10:24:31 -0700 | [diff] [blame] | 852 | $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \ |
| 853 | $(TARGET_PRODUCT_KERNEL_HEADERS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 854 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 855 | ifdef TARGET_2ND_ARCH |
Ying Wang | 9fb3526 | 2014-02-21 16:17:05 -0800 | [diff] [blame] | 856 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES := $(TARGET_PROJECT_INCLUDES) |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 857 | $(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] | 858 | endif |
| 859 | |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 860 | # Flags for DEX2OAT |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 861 | first_non_empty_of_three = $(if $(1),$(1),$(if $(2),$(2),$(3))) |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 862 | DEX2OAT_TARGET_ARCH := $(TARGET_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 863 | 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] | 864 | DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 865 | |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 866 | ifdef TARGET_2ND_ARCH |
| 867 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 868 | $(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] | 869 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 870 | endif |
| 871 | |
Dan Willemsen | 56c6a9d | 2016-12-14 15:54:01 -0800 | [diff] [blame] | 872 | # These will come from Soong, drop the environment versions |
| 873 | unexport CLANG |
| 874 | unexport CLANG_CXX |
| 875 | unexport CCC_CC |
| 876 | unexport CCC_CXX |
yroussel | 1319005 | 2012-01-12 16:09:06 +0100 | [diff] [blame] | 877 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 878 | # ############################################################### |
| 879 | # Collect a list of the SDK versions that we could compile against |
| 880 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 881 | # ############################################################### |
| 882 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 883 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 884 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 885 | |
Ying Wang | 589e8c5 | 2015-05-19 16:03:57 -0700 | [diff] [blame] | 886 | # The path where app can reference the support library resources. |
| 887 | ifdef TARGET_BUILD_APPS |
| 888 | SUPPORT_LIBRARY_ROOT := $(HISTORICAL_SDK_VERSIONS_ROOT)/current/support |
| 889 | else |
| 890 | SUPPORT_LIBRARY_ROOT := frameworks/support |
| 891 | endif |
| 892 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 893 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 894 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 895 | # |
| 896 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 897 | # on each line for sort to process. |
| 898 | # 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] | 899 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 900 | # Numerically sort a list of numbers |
| 901 | # $(1): the list of numbers to be sorted |
| 902 | define numerically_sort |
| 903 | $(shell function sgrax() { \ |
| 904 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 905 | } ; \ |
| 906 | ( sgrax $(1) | sort -g ) ) |
| 907 | endef |
| 908 | |
Ying Wang | a1ff629 | 2012-05-10 18:07:33 -0700 | [diff] [blame] | 909 | TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\ |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 910 | $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \ |
Ying Wang | 2f7b92c | 2014-07-21 13:44:06 -0700 | [diff] [blame] | 911 | $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar))) |
| 912 | |
Sundong Ahn | 5a44d1f | 2017-10-16 19:20:34 +0900 | [diff] [blame] | 913 | TARGET_AVAILABLE_SDK_VERSIONS := $(addprefix system_,$(call numerically_sort,\ |
| 914 | $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android_system.jar,%, \ |
| 915 | $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android_system.jar)))) \ |
| 916 | $(TARGET_AVAILABLE_SDK_VERSIONS) |
| 917 | |
Michael Wright | 0fb087f | 2015-11-06 15:20:51 +0000 | [diff] [blame] | 918 | # We don't have prebuilt test_current SDK yet. |
| 919 | TARGET_AVAILABLE_SDK_VERSIONS := test_current $(TARGET_AVAILABLE_SDK_VERSIONS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 920 | |
Colin Cross | f960257 | 2017-10-12 13:34:40 -0700 | [diff] [blame] | 921 | TARGET_SDK_VERSIONS_WITHOUT_JAVA_18_SUPPORT := $(call numbers_less_than,24,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 922 | TARGET_SDK_VERSIONS_WITHOUT_JAVA_19_SUPPORT := $(call numbers_less_than,27,$(TARGET_AVAILABLE_SDK_VERSIONS)) |
| 923 | |
Joe Onorato | 15ee93b | 2011-04-08 15:03:48 -0700 | [diff] [blame] | 924 | INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt |
Hui Shu | e8af17e | 2014-02-21 14:18:19 -0800 | [diff] [blame] | 925 | INTERNAL_PLATFORM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/removed.txt |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 926 | INTERNAL_PLATFORM_SYSTEM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-api.txt |
| 927 | INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-removed.txt |
Jeff Sharkey | e1d620e | 2017-05-09 19:03:01 -0600 | [diff] [blame] | 928 | INTERNAL_PLATFORM_SYSTEM_EXACT_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-exact.txt |
Michael Wright | 0fb087f | 2015-11-06 15:20:51 +0000 | [diff] [blame] | 929 | INTERNAL_PLATFORM_TEST_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/test-api.txt |
| 930 | INTERNAL_PLATFORM_TEST_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/test-removed.txt |
Jeff Sharkey | e1d620e | 2017-05-09 19:03:01 -0600 | [diff] [blame] | 931 | INTERNAL_PLATFORM_TEST_EXACT_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/test-exact.txt |
Gary King | 1e80c29 | 2010-03-08 17:16:57 -0800 | [diff] [blame] | 932 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 933 | # This is the standard way to name a directory containing prebuilt target |
| 934 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 935 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Colin Cross | 12d18eb | 2014-05-22 12:01:23 -0700 | [diff] [blame] | 936 | ifdef TARGET_2ND_ARCH |
| 937 | TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH) |
| 938 | endif |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 939 | |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 940 | # Set up RS prebuilt variables for compatibility library |
| 941 | |
Tim Murray | dc1d0ab | 2014-09-30 15:08:03 -0700 | [diff] [blame] | 942 | 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] | 943 | RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a |
| 944 | |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 945 | # API Level lists for Renderscript Compat lib. |
| 946 | 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] | 947 | RSCOMPAT_NO_USAGEIO_API_LEVELS := 8 9 10 11 12 13 |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 948 | |
Colin Cross | c7bd540 | 2017-10-30 17:31:44 -0700 | [diff] [blame] | 949 | # Add BUILD_NUMBER to apps default version name if it's unbundled build. |
| 950 | ifdef TARGET_BUILD_APPS |
| 951 | TARGET_BUILD_WITH_APPS_VERSION_NAME := true |
| 952 | endif |
| 953 | |
| 954 | ifdef TARGET_BUILD_WITH_APPS_VERSION_NAME |
| 955 | APPS_DEFAULT_VERSION_NAME := $(PLATFORM_VERSION)-$(BUILD_NUMBER_FROM_FILE) |
| 956 | else |
| 957 | APPS_DEFAULT_VERSION_NAME := $(PLATFORM_VERSION) |
| 958 | endif |
| 959 | |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 960 | # ANDROID_WARNING_ALLOWED_PROJECTS is generated by build/soong. |
Chih-Hung Hsieh | bab0488 | 2016-10-11 15:38:39 -0700 | [diff] [blame] | 961 | define find_warning_allowed_projects |
| 962 | $(filter $(ANDROID_WARNING_ALLOWED_PROJECTS),$(1)/) |
| 963 | endef |
| 964 | |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 965 | # These goals don't need to collect and include Android.mks/CleanSpec.mks |
| 966 | # in the source tree. |
Dan Willemsen | 0f2ab46 | 2017-05-18 13:42:40 -0700 | [diff] [blame] | 967 | dont_bother_goals := out \ |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 968 | snod systemimage-nodeps \ |
| 969 | stnod systemtarball-nodeps \ |
| 970 | userdataimage-nodeps userdatatarball-nodeps \ |
| 971 | cacheimage-nodeps \ |
| 972 | bptimage-nodeps \ |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 973 | vnod vendorimage-nodeps \ |
Dan Willemsen | 01a19a1 | 2016-11-09 16:35:34 -0800 | [diff] [blame] | 974 | systemotherimage-nodeps \ |
| 975 | ramdisk-nodeps \ |
| 976 | bootimage-nodeps \ |
| 977 | recoveryimage-nodeps \ |
| 978 | vbmetaimage-nodeps \ |
| 979 | product-graph dump-products |
| 980 | |
Dan Willemsen | 20f99a6 | 2017-10-12 01:35:14 -0700 | [diff] [blame] | 981 | ifeq ($(CALLED_FROM_SETUP),true) |
Dan Willemsen | 04f53ed | 2016-11-09 17:22:15 -0800 | [diff] [blame] | 982 | include $(BUILD_SYSTEM)/ninja_config.mk |
Dan Willemsen | 04f53ed | 2016-11-09 17:22:15 -0800 | [diff] [blame] | 983 | include $(BUILD_SYSTEM)/soong_config.mk |
| 984 | endif |
| 985 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 986 | include $(BUILD_SYSTEM)/dumpvar.mk |