1#
2# Product-specific compile-time definitions.
3#
4
5# The generic product target doesn't have any hardware-specific pieces.
6TARGET_NO_BOOTLOADER := true
7TARGET_NO_KERNEL := true
8
9TARGET_ARCH := mips
10TARGET_ARCH_VARIANT := mips32-fp
11TARGET_CPU_ABI := mips
12TARGET_CPU_SMP := true
13
14SMALLER_FONT_FOOTPRINT := true
15MINIMAL_FONT_FOOTPRINT := true
16# Some framework code requires this to enable BT
17BOARD_HAVE_BLUETOOTH := true
18BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth
19
20# Build OpenGLES emulation libraries
21BUILD_EMULATOR_OPENGL := true
22BUILD_EMULATOR_OPENGL_DRIVER := true
23USE_OPENGL_RENDERER := true
24BOARD_USES_GENERIC_AUDIO := true
25
26USE_CAMERA_STUB := true
27
28BOARD_USE_LEGACY_UI := true
29
30# share the same one across all mini-emulators
31BOARD_EGL_CFG := device/generic/goldfish/opengl/system/egl/egl.cfg
32TARGET_USERIMAGES_USE_EXT4 := true
33BOARD_SYSTEMIMAGE_PARTITION_SIZE := 786432000
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
39BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy
40BOARD_SEPOLICY_UNION += \
41        bootanim.te \
42        device.te \
43        domain.te \
44        file.te \
45        file_contexts \
46        qemud.te \
47        rild.te \
48        shell.te \
49        surfaceflinger.te \
50        system_server.te
51