OSDN Git Service

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