The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # config.mk |
| 2 | # |
| 3 | # Product-specific compile-time definitions. |
| 4 | # |
| 5 | |
| 6 | # Don't try prelinking or compressing the shared libraries |
| 7 | # used by the simulator. The host OS won't know what to do |
| 8 | # with them, and they may not even be ELF files. |
| 9 | # |
| 10 | # These definitions override the defaults in config/config.make. |
| 11 | TARGET_COMPRESS_MODULE_SYMBOLS := false |
| 12 | TARGET_PRELINK_MODULE := false |
| 13 | |
| 14 | # Don't try to build a bootloader. |
| 15 | TARGET_NO_BOOTLOADER := true |
| 16 | |
| 17 | # Don't bother with a kernel |
| 18 | TARGET_NO_KERNEL := true |
| 19 | |
Dianne Hackborn | ecc70d7 | 2009-05-21 15:45:30 -0700 | [diff] [blame^] | 20 | # The simulator does not support native code at all |
| 21 | TARGET_CPU_ABI := none |
| 22 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 23 | #the simulator partially emulates the original HTC /dev/eac audio interface |
| 24 | HAVE_HTC_AUDIO_DRIVER := true |
| 25 | BOARD_USES_GENERIC_AUDIO := true |