40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# BoardConfigEmuCommon.mk
|
|
#
|
|
# Common compile-time definitions for emulator
|
|
#
|
|
|
|
# The generic product target doesn't have any hardware-specific pieces.
|
|
TARGET_NO_BOOTLOADER := true
|
|
TARGET_NO_KERNEL := true
|
|
|
|
HAVE_HTC_AUDIO_DRIVER := true
|
|
BOARD_USES_GENERIC_AUDIO := true
|
|
TARGET_BOOTLOADER_BOARD_NAME := goldfish_$(TARGET_ARCH)
|
|
|
|
# no hardware camera
|
|
USE_CAMERA_STUB := true
|
|
|
|
TARGET_USES_HWC2 := true
|
|
NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3
|
|
|
|
# Build OpenGLES emulation guest and host libraries
|
|
BUILD_EMULATOR_OPENGL := true
|
|
BUILD_QEMU_IMAGES := true
|
|
|
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
|
USE_OPENGL_RENDERER := true
|
|
|
|
TARGET_COPY_OUT_VENDOR := vendor
|
|
|
|
# ~100 MB vendor image. Please adjust system image / vendor image sizes
|
|
# when finalizing them. The partition size needs to be a multiple of image
|
|
# block size: 4096.
|
|
BOARD_VENDORIMAGE_PARTITION_SIZE := 100003840
|
|
BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4
|
|
BOARD_FLASH_BLOCK_SIZE := 512
|
|
DEVICE_MATRIX_FILE := device/generic/goldfish/compatibility_matrix.xml
|
|
|
|
BOARD_SEPOLICY_DIRS += device/generic/goldfish/sepolicy/common
|
|
BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true
|