blob: fb6c920fce336c4ac708a261ba0a96c95fa8f0a5 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001# config.mk
Doug Zongkere01100c2009-06-19 17:12:18 -07002#
The Android Open Source Project88b60792009-03-03 19:28:42 -08003# Product-specific compile-time definitions.
4#
5
6# The generic product target doesn't have any hardware-specific pieces.
7TARGET_NO_BOOTLOADER := true
8TARGET_NO_KERNEL := true
Raghu Gandham8da43102012-07-25 19:57:22 -07009TARGET_ARCH := arm
David 'Digit' Turner5f5056f2011-06-15 15:33:24 +020010
11# Note: we build the platform images for ARMv7-A _without_ NEON.
12#
13# Technically, the emulator supports ARMv7-A _and_ NEON instructions, but
14# emulated NEON code paths typically ends up 2x slower than the normal C code
15# it is supposed to replace (unlike on real devices where it is 2x to 3x
16# faster).
17#
18# What this means is that the platform image will not use NEON code paths
19# that are slower to emulate. On the other hand, it is possible to emulate
20# application code generated with the NDK that uses NEON in the emulator.
21#
22TARGET_ARCH_VARIANT := armv7-a
Christopher Ferris6103fd72013-02-22 17:24:25 -080023TARGET_CPU_VARIANT := generic
David 'Digit' Turner5f5056f2011-06-15 15:33:24 +020024TARGET_CPU_ABI := armeabi-v7a
25TARGET_CPU_ABI2 := armeabi
26
The Android Open Source Project88b60792009-03-03 19:28:42 -080027HAVE_HTC_AUDIO_DRIVER := true
28BOARD_USES_GENERIC_AUDIO := true
Chih-Chung Changb9e030e2010-05-10 14:59:49 +080029
30# no hardware camera
31USE_CAMERA_STUB := true
Jean-Baptiste Queruf7a6ead2010-08-25 10:01:35 -070032
David Turner94431142011-09-28 22:54:08 +020033# Enable dex-preoptimization to speed up the first boot sequence
34# of an SDK AVD. Note that this operation only works on Linux for now
35ifeq ($(HOST_OS),linux)
Raghu Gandhamb53cc7a2012-05-07 07:04:57 -070036 ifeq ($(WITH_DEXPREOPT),)
37 WITH_DEXPREOPT := true
38 endif
David Turner94431142011-09-28 22:54:08 +020039endif
40
David 'Digit' Turner43dd89d2011-08-23 22:25:13 +020041# Build OpenGLES emulation guest and host libraries
42BUILD_EMULATOR_OPENGL := true
Jesse Hall615d2ff2011-12-01 11:45:49 -080043
44# Build and enable the OpenGL ES View renderer. When running on the emulator,
45# the GLES renderer disables itself if host GL acceleration isn't available.
46USE_OPENGL_RENDERER := true
Nick Kralevich3c9fae22013-07-09 18:04:51 -070047
Jamie Gennis782f2ad2013-10-06 16:02:02 -070048# Set the phase offset of the system's vsync event relative to the hardware
49# vsync. The system's vsync event drives Choreographer and SurfaceFlinger's
50# rendering. This value is the number of nanoseconds after the hardware vsync
51# that the system vsync event will occur.
52#
53# This phase offset allows adjustment of the minimum latency from application
54# wake-up (by Choregographer) time to the time at which the resulting window
55# image is displayed. This value may be either positive (after the HW vsync)
56# or negative (before the HW vsync). Setting it to 0 will result in a
57# minimum latency of two vsync periods because the app and SurfaceFlinger
58# will run just after the HW vsync. Setting it to a positive number will
59# result in the minimum latency being:
60#
61# (2 * VSYNC_PERIOD - (vsyncPhaseOffsetNs % VSYNC_PERIOD))
62#
63# Note that reducing this latency makes it more likely for the applications
64# to not have their window content image ready in time. When this happens
65# the latency will end up being an additional vsync period, and animations
66# will hiccup. Therefore, this latency should be tuned somewhat
67# conservatively (or at least with awareness of the trade-off being made).
68VSYNC_EVENT_PHASE_OFFSET_NS := 0
69
Nick Kralevich3c9fae22013-07-09 18:04:51 -070070TARGET_USERIMAGES_USE_EXT4 := true
bohu22f1bc52015-04-27 12:05:03 -070071BOARD_SYSTEMIMAGE_PARTITION_SIZE := 786432000
Tsu Chiang Chuang27a026c2014-05-06 17:27:20 -070072BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800
Nick Kralevich3c9fae22013-07-09 18:04:51 -070073BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
74BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
75BOARD_FLASH_BLOCK_SIZE := 512
76TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
Stephen Smalley1d5352e2013-11-05 09:37:41 -050077
78BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy
Deepanshu Gupta4e5e5822014-08-01 10:14:15 -070079
80ifeq ($(TARGET_PRODUCT),sdk)
81 # include an expanded selection of fonts for the SDK.
82 EXTENDED_FONT_FOOTPRINT := true
83endif