config.mk revision 54fdb473b656544c75ad06497ecf20a1e8d6b539
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
6# Only use ANDROID_BUILD_SHELL to wrap around bash.
7# DO NOT use other shells such as zsh.
8ifdef ANDROID_BUILD_SHELL
9SHELL := $(ANDROID_BUILD_SHELL)
10else
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.
14SHELL := /bin/bash
15endif
16
17# Tell python not to spam the source tree with .pyc files.  This
18# only has an effect on python 2.6 and above.
19export PYTHONDONTWRITEBYTECODE := 1
20
21# Standard source directories.
22SRC_DOCS:= $(TOPDIR)docs
23# TODO: Enforce some kind of layering; only add include paths
24#       when a module links against a particular library.
25# TODO: See if we can remove most of these from the global list.
26SRC_HEADERS := \
27	$(TOPDIR)system/core/include \
28	$(TOPDIR)hardware/libhardware/include \
29	$(TOPDIR)hardware/libhardware_legacy/include \
30	$(TOPDIR)hardware/ril/include \
31	$(TOPDIR)libnativehelper/include \
32	$(TOPDIR)frameworks/native/include \
33	$(TOPDIR)frameworks/native/opengl/include \
34	$(TOPDIR)frameworks/av/include \
35	$(TOPDIR)frameworks/base/include \
36	$(TOPDIR)frameworks/base/opengl/include \
37	$(TOPDIR)external/skia/include
38SRC_HOST_HEADERS:=$(TOPDIR)tools/include
39SRC_LIBRARIES:= $(TOPDIR)libs
40SRC_SERVERS:= $(TOPDIR)servers
41SRC_TARGET_DIR := $(TOPDIR)build/target
42SRC_API_DIR := $(TOPDIR)frameworks/base/api
43
44# Some specific paths to tools
45SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc
46
47# Various mappings to avoid hard-coding paths all over the place
48include $(BUILD_SYSTEM)/pathmap.mk
49
50# ###############################################################
51# Build system internal files
52# ###############################################################
53
54BUILD_COMBOS:= $(BUILD_SYSTEM)/combo
55
56CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk
57BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk
58BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk
59BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk
60BUILD_RAW_STATIC_LIBRARY := $(BUILD_SYSTEM)/raw_static_library.mk
61BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk
62BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk
63BUILD_RAW_EXECUTABLE:= $(BUILD_SYSTEM)/raw_executable.mk
64BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk
65BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk
66BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk
67BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk
68BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk
69BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk
70BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk
71BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk
72BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk
73BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk
74BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk
75BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk
76BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk
77
78-include cts/build/config.mk
79
80# ###############################################################
81# Parse out any modifier targets.
82# ###############################################################
83
84# The 'showcommands' goal says to show the full command
85# lines being executed, instead of a short message about
86# the kind of operation being done.
87SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS))
88
89
90# ###############################################################
91# Set common values
92# ###############################################################
93
94# These can be changed to modify both host and device modules.
95COMMON_GLOBAL_CFLAGS:= -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith
96COMMON_RELEASE_CFLAGS:= -DNDEBUG -UDEBUG
97
98COMMON_GLOBAL_CPPFLAGS:= $(COMMON_GLOBAL_CFLAGS) -Wsign-promo
99COMMON_RELEASE_CPPFLAGS:= $(COMMON_RELEASE_CFLAGS)
100
101# Set the extensions used for various packages
102COMMON_PACKAGE_SUFFIX := .zip
103COMMON_JAVA_PACKAGE_SUFFIX := .jar
104COMMON_ANDROID_PACKAGE_SUFFIX := .apk
105
106# list of flags to turn specific warnings in to errors
107TARGET_ERROR_FLAGS := -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point
108
109# TODO: do symbol compression
110TARGET_COMPRESS_MODULE_SYMBOLS := false
111
112# Default shell is mksh. Other possible value is ash.
113TARGET_SHELL := mksh
114
115# ###############################################################
116# Include sub-configuration files
117# ###############################################################
118
119# ---------------------------------------------------------------
120# Try to include buildspec.mk, which will try to set stuff up.
121# If this file doesn't exist, the environemnt variables will
122# be used, and if that doesn't work, then the default is an
123# arm build
124ifndef ANDROID_BUILDSPEC
125ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk
126endif
127-include $(ANDROID_BUILDSPEC)
128
129# ---------------------------------------------------------------
130# Define most of the global variables.  These are the ones that
131# are specific to the user's build configuration.
132include $(BUILD_SYSTEM)/envsetup.mk
133
134# Boards may be defined under $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)
135# or under vendor/*/$(TARGET_DEVICE).  Search in both places, but
136# make sure only one exists.
137# Real boards should always be associated with an OEM vendor.
138board_config_mk := \
139	$(strip $(wildcard \
140		$(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)/BoardConfig.mk \
141		device/*/$(TARGET_DEVICE)/BoardConfig.mk \
142		vendor/*/$(TARGET_DEVICE)/BoardConfig.mk \
143	))
144ifeq ($(board_config_mk),)
145  $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE))
146endif
147ifneq ($(words $(board_config_mk)),1)
148  $(error Multiple board config files for TARGET_DEVICE $(TARGET_DEVICE): $(board_config_mk))
149endif
150include $(board_config_mk)
151ifeq ($(TARGET_ARCH),)
152  $(error TARGET_ARCH not defined by board config: $(board_config_mk))
153endif
154TARGET_DEVICE_DIR := $(patsubst %/,%,$(dir $(board_config_mk)))
155board_config_mk :=
156
157# The build system exposes several variables for where to find the kernel
158# headers:
159#   TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current
160#       device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers,
161#       e.g. device/samsung/tuna/kernel-headers. This directory is not
162#       explicitly set by anyone, the build system always adds this subdir.
163#
164#   TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file
165#       to allow other directories to be included. This is useful if there's
166#       some common place where a few headers are being kept for a group
167#       of devices. For example, device/<vendor>/common/kernel-headers could
168#       contain some headers for several of <vendor>'s devices.
169#
170#   TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance
171#       graph. This allows architecture products to provide headers for the
172#       devices using that architecture. For example,
173#       hardware/ti/omap4xxx/omap4.mk will specify
174#       PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4
175#       specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers.
176#       The build system then combines all the values specified by all the
177#       PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance
178#       tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable.
179#
180# The layout of subdirs in any of the kernel-headers dir should mirror the
181# layout of the kernel include/ directory. For example,
182#     device/samsung/tuna/kernel-headers/linux/,
183#     hardware/ti/omap4xxx/kernel-headers/media/,
184#     etc.
185#
186# NOTE: These directories MUST contain post-processed headers using the
187# bionic/libc/kernel/clean_header.py tool. Additionally, the original kernel
188# headers must also be checked in, but in a different subdirectory. By
189# convention, the originals should be checked into original-kernel-headers
190# directory of the same parent dir. For example,
191#     device/samsung/tuna/kernel-headers            <----- post-processed
192#     device/samsung/tuna/original-kernel-headers   <----- originals
193#
194TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers))
195
196define validate-kernel-headers
197$(if $(firstword $(foreach hdr_dir,$(1),\
198         $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\
199     $(error Kernel header dirs must be end in kernel-headers: $(1)))
200endef
201# also allow the board config to provide additional directories since
202# there could be device/oem/base_hw and device/oem/derived_hw
203# that both are valid devices but derived_hw needs to use kernel headers
204# from base_hw.
205TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS)))
206TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS))
207$(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS))
208
209# then add product-inherited includes, to allow for
210# hardware/sivendor/chip/chip.mk to include their own headers
211TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS)))
212TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS))
213$(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS))
214
215# Clean up/verify variables defined by the board config file.
216TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME))
217TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI))
218ifeq ($(TARGET_CPU_ABI),)
219  $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk))
220endif
221TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2))
222
223# $(1): os/arch
224define select-android-config-h
225system/core/include/arch/$(1)/AndroidConfig.h
226endef
227
228combo_target := HOST_
229include $(BUILD_SYSTEM)/combo/select.mk
230
231# on windows, the tools have .exe at the end, and we depend on the
232# host config stuff being done first
233
234combo_target := TARGET_
235include $(BUILD_SYSTEM)/combo/select.mk
236
237# Compute TARGET_TOOLCHAIN_ROOT from TARGET_TOOLS_PREFIX
238# if only TARGET_TOOLS_PREFIX is passed to the make command.
239ifndef TARGET_TOOLCHAIN_ROOT
240TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLS_PREFIX)))
241TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLCHAIN_ROOT)))
242TARGET_TOOLCHAIN_ROOT := $(wildcard $(TARGET_TOOLCHAIN_ROOT))
243endif
244
245# Pick a Java compiler.
246include $(BUILD_SYSTEM)/combo/javac.mk
247
248# ---------------------------------------------------------------
249# Check that the configuration is current.  We check that
250# BUILD_ENV_SEQUENCE_NUMBER is current against this value.
251# Don't fail if we're called from envsetup, so they have a
252# chance to update their environment.
253
254ifeq (,$(strip $(CALLED_FROM_SETUP)))
255ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER)))
256ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER))
257$(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.)
258$(info *** If you use envsetup/lunch/choosecombo:)
259$(info ***   - Re-execute envsetup (". envsetup.sh"))
260$(info ***   - Re-run lunch or choosecombo)
261$(info *** If you use buildspec.mk:)
262$(info ***   - Look at buildspec.mk.default to see what has changed)
263$(info ***   - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)")
264$(error bailing..)
265endif
266endif
267endif
268
269
270# ---------------------------------------------------------------
271# Generic tools.
272
273LEX:= flex
274YACC:= bison -d
275DOXYGEN:= doxygen
276AAPT := $(HOST_OUT_EXECUTABLES)/aapt$(HOST_EXECUTABLE_SUFFIX)
277AIDL := $(HOST_OUT_EXECUTABLES)/aidl$(HOST_EXECUTABLE_SUFFIX)
278PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX)
279ICUDATA := $(HOST_OUT_EXECUTABLES)/icudata$(HOST_EXECUTABLE_SUFFIX)
280SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX)
281MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX)
282MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX)
283MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX)
284MKYAFFS2 := $(HOST_OUT_EXECUTABLES)/mkyaffs2image$(HOST_EXECUTABLE_SUFFIX)
285APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX)
286FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX)
287MKEXT2IMG := $(HOST_OUT_EXECUTABLES)/genext2fs$(HOST_EXECUTABLE_SUFFIX)
288MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX)
289MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh
290MKEXT2BOOTIMG := external/genext2fs/mkbootimg_ext2.sh
291MKTARBALL := build/tools/mktarball.sh
292TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX)
293E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX)
294JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar
295PROGUARD := external/proguard/bin/proguard.sh
296JAVATAGS := build/tools/java-event-log-tags.py
297LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc$(HOST_EXECUTABLE_SUFFIX)
298LLVM_RS_LINK := $(HOST_OUT_EXECUTABLES)/llvm-rs-link$(HOST_EXECUTABLE_SUFFIX)
299DEXOPT := $(HOST_OUT_EXECUTABLES)/dexopt$(HOST_EXECUTABLE_SUFFIX)
300DEXPREOPT := dalvik/tools/dex-preopt
301LINT := prebuilts/sdk/tools/lint
302
303# ACP is always for the build OS, not for the host OS
304ACP := $(BUILD_OUT_EXECUTABLES)/acp$(BUILD_EXECUTABLE_SUFFIX)
305
306# dx is java behind a shell script; no .exe necessary.
307DX := $(HOST_OUT_EXECUTABLES)/dx
308ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign$(HOST_EXECUTABLE_SUFFIX)
309FINDBUGS := prebuilt/common/findbugs/bin/findbugs
310EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX)
311
312# Deal with archaic version of bison on Mac OS X.
313ifeq ($(filter 1.28,$(shell $(YACC) -V)),)
314YACC_HEADER_SUFFIX:= .hpp
315else
316YACC_HEADER_SUFFIX:= .cpp.h
317endif
318
319# Don't use column under Windows, cygwin or not
320ifeq ($(HOST_OS),windows)
321COLUMN:= cat
322else
323COLUMN:= column
324endif
325
326OLD_FLEX := prebuilts/misc/$(HOST_PREBUILT_TAG)/flex/flex-2.5.4a$(HOST_EXECUTABLE_SUFFIX)
327
328ifeq ($(HOST_OS),darwin)
329# Mac OS' screwy version of java uses a non-standard directory layout
330# and doesn't even seem to have tools.jar.  On the other hand, javac seems
331# to be able to magically find the classes in there, wherever they are, so
332# leave this blank
333HOST_JDK_TOOLS_JAR :=
334else
335HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
336ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),)
337$(error Error: could not find jdk tools.jar, please install JDK6, \
338    which you can download from java.sun.com)
339endif
340endif
341
342# Is the host JDK 64-bit version?
343HOST_JDK_IS_64BIT_VERSION :=
344ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),)
345HOST_JDK_IS_64BIT_VERSION := true
346endif
347
348# It's called md5 on Mac OS and md5sum on Linux
349ifeq ($(HOST_OS),darwin)
350MD5SUM:=md5 -q
351else
352MD5SUM:=md5sum
353endif
354
355APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR)
356APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX)
357APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX)
358APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)"
359
360# The default key if not set as LOCAL_CERTIFICATE
361ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
362  DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE)
363else
364  DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey
365endif
366
367# ###############################################################
368# Set up final options.
369# ###############################################################
370
371HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
372HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
373
374HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
375HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
376
377TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
378TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
379
380TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
381TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
382
383HOST_GLOBAL_LD_DIRS += -L$(HOST_OUT_INTERMEDIATE_LIBRARIES)
384TARGET_GLOBAL_LD_DIRS += -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES)
385
386HOST_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_OUT_HEADERS)
387TARGET_PROJECT_INCLUDES:= $(SRC_HEADERS) $(TARGET_OUT_HEADERS) \
388		$(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \
389		$(TARGET_PRODUCT_KERNEL_HEADERS)
390
391# Many host compilers don't support these flags, so we have to make
392# sure to only specify them for the target compilers checked in to
393# the source tree.
394TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS)
395TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS)
396
397HOST_GLOBAL_CFLAGS += $(HOST_RELEASE_CFLAGS)
398HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS)
399
400TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS)
401TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS)
402
403# define llvm tools and global flags
404include $(BUILD_SYSTEM)/llvm_config.mk
405
406PREBUILT_IS_PRESENT := $(if $(wildcard prebuilt/Android.mk),true)
407
408# ###############################################################
409# Collect a list of the SDK versions that we could compile against
410# For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE)
411# ###############################################################
412
413HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk
414HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk
415
416# Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N.
417# The 'current' version is whatever this source tree is.
418#
419# sgrax     is the opposite of xargs.  It takes the list of args and puts them
420#           on each line for sort to process.
421# sort -g   is a numeric sort, so 1 2 3 10 instead of 1 10 2 3.
422
423# Numerically sort a list of numbers
424# $(1): the list of numbers to be sorted
425define numerically_sort
426$(shell function sgrax() { \
427    while [ -n "$$1" ] ; do echo $$1 ; shift ; done \
428    } ; \
429    ( sgrax $(1) | sort -g ) )
430endef
431
432TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\
433    $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \
434    $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar)))
435
436INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt
437
438# This is the standard way to name a directory containing prebuilt target
439# objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so
440TARGET_PREBUILT_TAG := android-$(TARGET_ARCH)
441
442include $(BUILD_SYSTEM)/dumpvar.mk
443