1 # 2 # Product-specific compile-time definitions. 3 # 4 5 # The generic product target doesn't have any hardware-specific pieces. 6 TARGET_NO_BOOTLOADER := true 7 TARGET_NO_KERNEL := true 8 9 TARGET_ARCH := mips 10 TARGET_ARCH_VARIANT := mips32-fp 11 TARGET_CPU_ABI := mips 12 13 SMALLER_FONT_FOOTPRINT := true 14 MINIMAL_FONT_FOOTPRINT := true 15 # Some framework code requires this to enable BT 16 BOARD_HAVE_BLUETOOTH := true 17 BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth 18 19 # Build OpenGLES emulation libraries 20 BUILD_EMULATOR_OPENGL := true 21 BUILD_EMULATOR_OPENGL_DRIVER := true 22 USE_OPENGL_RENDERER := true 23 BOARD_USES_GENERIC_AUDIO := true 24 25 USE_CAMERA_STUB := true 26 27 BOARD_USE_LEGACY_UI := true 28 29 # share the same one across all mini-emulators 30 BOARD_EGL_CFG := device/generic/goldfish-opengl/system/egl/egl.cfg 31 TARGET_USERIMAGES_USE_EXT4 := true 32 BOARD_SYSTEMIMAGE_PARTITION_SIZE := 786432000 33 BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800 34 BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016 35 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 36 BOARD_FLASH_BLOCK_SIZE := 512 37 TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true 38 BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy 39