Home | History | Annotate | Download | only in x86_64
      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 TARGET_CPU_ABI := x86_64
     10 TARGET_ARCH := x86_64
     11 TARGET_ARCH_VARIANT := x86_64
     12 
     13 TARGET_2ND_CPU_ABI := x86
     14 TARGET_2ND_ARCH := x86
     15 TARGET_2ND_ARCH_VARIANT := x86_64
     16 
     17 TARGET_USES_64_BIT_BINDER := true
     18 
     19 SMALLER_FONT_FOOTPRINT := true
     20 MINIMAL_FONT_FOOTPRINT := true
     21 # Disable emulator for "make dist" until there is a 64-bit qemu kernel
     22 BUILD_EMULATOR := false
     23 # Some framework code requires this to enable BT
     24 BOARD_HAVE_BLUETOOTH := true
     25 BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth
     26 
     27 USE_OPENGL_RENDERER := true
     28 
     29 BOARD_USE_LEGACY_UI := true
     30 
     31 # PDK does not use ext4 image, but it is added here to prevent build break.
     32 TARGET_USERIMAGES_USE_EXT4 := true
     33 BOARD_SYSTEMIMAGE_PARTITION_SIZE := 2147483648
     34 BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800
     35 BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
     36 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
     37 BOARD_FLASH_BLOCK_SIZE := 512
     38 TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
     39