BoardConfig.mk revision 5abaa4eead07ffcc844b370d6f2c558169f89f95
1# config.mk
2#
3# 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
9TARGET_CPU_ABI := x86_64
10TARGET_ARCH := x86_64
11TARGET_ARCH_VARIANT := x86_64
12TARGET_PRELINK_MODULE := false
13
14# The IA emulator (qemu) uses the Goldfish devices
15HAVE_HTC_AUDIO_DRIVER := true
16BOARD_USES_GENERIC_AUDIO := true
17
18# no hardware camera
19USE_CAMERA_STUB := true
20
21# customize the malloced address to be 16-byte aligned
22BOARD_MALLOC_ALIGNMENT := 16
23
24# Enable dex-preoptimization to speed up the first boot sequence
25# of an SDK AVD. Note that this operation only works on Linux for now
26ifeq ($(HOST_OS),linux)
27WITH_DEXPREOPT := true
28endif
29
30WPA_SUPPLICANT_VERSION := VER_0_8_X
31
32# Build OpenGLES emulation host and guest libraries
33BUILD_EMULATOR_OPENGL := true
34
35# Build and enable the OpenGL ES View renderer. When running on the emulator,
36# the GLES renderer disables itself if host GL acceleration isn't available.
37USE_OPENGL_RENDERER := true
38
39TARGET_USERIMAGES_USE_EXT4 := true
40BOARD_SYSTEMIMAGE_PARTITION_SIZE := 576716800
41BOARD_USERDATAIMAGE_PARTITION_SIZE := 209715200
42BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
43BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
44BOARD_FLASH_BLOCK_SIZE := 512
45TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
46