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