1 # config.mk 2 # 3 # Product-specific compile-time definitions. 4 # 5 6 # The generic product target doesn't have any hardware-specific pieces. 7 TARGET_NO_BOOTLOADER := true 8 TARGET_NO_KERNEL := true 9 TARGET_CPU_ABI := x86_64 10 TARGET_ARCH := x86_64 11 TARGET_ARCH_VARIANT := x86_64 12 TARGET_PRELINK_MODULE := false 13 14 TARGET_2ND_CPU_ABI := x86 15 TARGET_2ND_ARCH := x86 16 TARGET_2ND_ARCH_VARIANT := x86 17 18 TARGET_USES_64_BIT_BINDER := true 19 20 SMALLER_FONT_FOOTPRINT := true 21 MINIMAL_FONT_FOOTPRINT := true 22 # Disable emulator for "make dist" until there is a 64-bit qemu kernel 23 BUILD_EMULATOR := false 24 # Some framework code requires this to enable BT 25 BOARD_HAVE_BLUETOOTH := true 26 BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth 27 28 USE_OPENGL_RENDERER := true 29 30 BOARD_USE_LEGACY_UI := true 31 32 # PDK does not use ext4 image, but it is added here to prevent build break. 33 TARGET_USERIMAGES_USE_EXT4 := true 34 BOARD_SYSTEMIMAGE_PARTITION_SIZE := 786432000 35 BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800 36 BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016 37 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 38 BOARD_FLASH_BLOCK_SIZE := 512 39 TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true