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