Home | History | Annotate | Download | only in generic_x86
      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
     10 TARGET_ARCH := x86
     11 TARGET_ARCH_VARIANT := x86-atom
     12 TARGET_PRELINK_MODULE := false
     13 
     14 # The IA emulator (qemu) uses the Goldfish devices
     15 HAVE_HTC_AUDIO_DRIVER := true
     16 BOARD_USES_GENERIC_AUDIO := true
     17 
     18 # no hardware camera
     19 USE_CAMERA_STUB := true
     20 
     21 # Set /system/bin/sh to ash, not mksh, to make sure we can switch back.
     22 TARGET_SHELL := ash
     23 
     24 # Enable dex-preoptimization to speed up the first boot sequence
     25 # of an SDK AVD. Note that this operation only works on Linux for now
     26 ifeq ($(HOST_OS),linux)
     27 WITH_DEXPREOPT := true
     28 endif
     29 
     30 # Build OpenGLES emulation host and guest libraries
     31 BUILD_EMULATOR_OPENGL := true
     32