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
12
13TARGET_2ND_CPU_ABI := x86
14TARGET_2ND_ARCH := x86
15TARGET_2ND_ARCH_VARIANT := x86_64
16
17
18SMALLER_FONT_FOOTPRINT := true
19MINIMAL_FONT_FOOTPRINT := true
20# Disable emulator for "make dist" until there is a 64-bit qemu kernel
21BUILD_EMULATOR := false
22# Some framework code requires this to enable BT
23BOARD_HAVE_BLUETOOTH := true
24BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth
25
26USE_OPENGL_RENDERER := true
27
28BOARD_USE_LEGACY_UI := true
29
30# PDK does not use ext4 image, but it is added here to prevent build break.
31TARGET_USERIMAGES_USE_EXT4 := true
32BOARD_SYSTEMIMAGE_PARTITION_SIZE := 2147483648
33BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800
34BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
35BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
36BOARD_FLASH_BLOCK_SIZE := 512
37TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
38