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_ARCH := arm 10 11TARGET_ARCH_VARIANT := armv7-a-neon 12TARGET_CPU_VARIANT := generic 13TARGET_CPU_ABI := armeabi-v7a 14TARGET_CPU_ABI2 := armeabi 15 16SMALLER_FONT_FOOTPRINT := true 17MINIMAL_FONT_FOOTPRINT := true 18# Some framework code requires this to enable BT 19BOARD_HAVE_BLUETOOTH := true 20BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth 21 22BOARD_USES_GENERIC_AUDIO := true 23 24USE_CAMERA_STUB := true 25 26BUILD_EMULATOR_OPENGL := true 27USE_OPENGL_RENDERER := true 28 29BOARD_USE_LEGACY_UI := true 30 31TARGET_USERIMAGES_USE_EXT4 := true 32BOARD_SYSTEMIMAGE_PARTITION_SIZE := 576716800 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 39BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy 40