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