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 10 TARGET_ARCH := arm64 11 TARGET_ARCH_VARIANT := armv8-a 12 TARGET_CPU_VARIANT := generic 13 TARGET_CPU_ABI := arm64-v8a 14 15 TARGET_2ND_ARCH := arm 16 TARGET_2ND_ARCH_VARIANT := armv7-a-neon 17 TARGET_2ND_CPU_VARIANT := cortex-a15 18 TARGET_2ND_CPU_ABI := armeabi-v7a 19 TARGET_2ND_CPU_ABI2 := armeabi 20 21 TARGET_USES_64_BIT_BINDER := true 22 23 SMALLER_FONT_FOOTPRINT := true 24 MINIMAL_FONT_FOOTPRINT := true 25 # Some framework code requires this to enable BT 26 BOARD_HAVE_BLUETOOTH := true 27 BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth 28 29 BOARD_USES_GENERIC_AUDIO := true 30 31 USE_CAMERA_STUB := true 32 33 BUILD_EMULATOR_OPENGL := true 34 USE_OPENGL_RENDERER := true 35 36 BOARD_USE_LEGACY_UI := true 37 VSYNC_EVENT_PHASE_OFFSET_NS := 0 38 39 # PDK does not use ext4 image, but it is added here to prevent build break. 40 TARGET_USERIMAGES_USE_EXT4 := true 41 BOARD_SYSTEMIMAGE_PARTITION_SIZE := 786432000 42 BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800 43 BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016 44 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 45 BOARD_FLASH_BLOCK_SIZE := 512 46 TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true 47