Isaac Chen | 55e1d01 | 2018-06-11 12:52:22 +0800 | [diff] [blame] | 1 | # BoardConfigEmuCommon.mk |
| 2 | # |
| 3 | # Common compile-time definitions for emulator |
| 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 | HAVE_HTC_AUDIO_DRIVER := true |
| 11 | BOARD_USES_GENERIC_AUDIO := true |
| 12 | TARGET_BOOTLOADER_BOARD_NAME := goldfish_$(TARGET_ARCH) |
| 13 | |
| 14 | TARGET_USES_64_BIT_BINDER := true |
| 15 | TARGET_USES_MKE2FS := true |
| 16 | |
| 17 | # no hardware camera |
| 18 | USE_CAMERA_STUB := true |
| 19 | |
| 20 | TARGET_USES_HWC2 := true |
| 21 | NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3 |
| 22 | |
| 23 | # Build OpenGLES emulation guest and host libraries |
| 24 | BUILD_EMULATOR_OPENGL := true |
| 25 | BUILD_QEMU_IMAGES := true |
| 26 | |
| 27 | # Build and enable the OpenGL ES View renderer. When running on the emulator, |
| 28 | # the GLES renderer disables itself if host GL acceleration isn't available. |
| 29 | USE_OPENGL_RENDERER := true |
| 30 | |
| 31 | TARGET_COPY_OUT_VENDOR := vendor |
| 32 | # ~100 MB vendor image. Please adjust system image / vendor image sizes |
| 33 | # when finalizing them. |
| 34 | BOARD_VENDORIMAGE_PARTITION_SIZE := 100000000 |
| 35 | BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 36 | BOARD_FLASH_BLOCK_SIZE := 512 |
| 37 | TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true |
| 38 | DEVICE_MATRIX_FILE := device/generic/goldfish/compatibility_matrix.xml |
| 39 | |
| 40 | # Android generic system image always create metadata partition |
| 41 | BOARD_USES_METADATA_PARTITION := true |
| 42 | |
| 43 | # Set this to create /cache mount point for non-A/B devices that mounts /cache. |
| 44 | # The partition size doesn't matter, just to make build pass. |
| 45 | BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 46 | BOARD_CACHEIMAGE_PARTITION_SIZE := 16777216 |
| 47 | |
| 48 | BOARD_SEPOLICY_DIRS += device/generic/goldfish/sepolicy/common |
| 49 | BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true |
| 50 | |
| 51 | BUILD_BROKEN_DUP_RULES := false |