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 | |
Iliyan Malchev | b375e71 | 2011-03-08 16:19:48 -0800 | [diff] [blame] | 6 | # Don't try compressing the shared libraries used by the simulator. The host |
| 7 | # OS won't know what to do with them, and they may not even be ELF files. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 8 | # |
| 9 | # These definitions override the defaults in config/config.make. |
| 10 | TARGET_COMPRESS_MODULE_SYMBOLS := false |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 11 | |
| 12 | # Don't try to build a bootloader. |
| 13 | TARGET_NO_BOOTLOADER := true |
| 14 | |
| 15 | # Don't bother with a kernel |
| 16 | TARGET_NO_KERNEL := true |
| 17 | |
Dianne Hackborn | ecc70d7 | 2009-05-21 15:45:30 -0700 | [diff] [blame] | 18 | # The simulator does not support native code at all |
| 19 | TARGET_CPU_ABI := none |
| 20 | |
Andy McFadden | 5f2b36f | 2010-05-20 15:29:53 -0700 | [diff] [blame] | 21 | # But it is very likely SMP. |
| 22 | TARGET_CPU_SMP := true |
| 23 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 24 | #the simulator partially emulates the original HTC /dev/eac audio interface |
| 25 | HAVE_HTC_AUDIO_DRIVER := true |
| 26 | BOARD_USES_GENERIC_AUDIO := true |
Chih-Chung Chang | b9e030e | 2010-05-10 14:59:49 +0800 | [diff] [blame] | 27 | |
| 28 | # no hardware camera |
| 29 | USE_CAMERA_STUB := true |