blob: 233b136f8bf7007d1299213ce31910167c10976d [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001# config.mk
Doug Zongkere01100c2009-06-19 17:12:18 -07002#
The Android Open Source Project88b60792009-03-03 19:28:42 -08003# Product-specific compile-time definitions.
4#
5
6# The generic product target doesn't have any hardware-specific pieces.
7TARGET_NO_BOOTLOADER := true
8TARGET_NO_KERNEL := true
Raghu Gandham8da43102012-07-25 19:57:22 -07009TARGET_ARCH := arm
David 'Digit' Turner5f5056f2011-06-15 15:33:24 +020010
11# Note: we build the platform images for ARMv7-A _without_ NEON.
12#
13# Technically, the emulator supports ARMv7-A _and_ NEON instructions, but
14# emulated NEON code paths typically ends up 2x slower than the normal C code
15# it is supposed to replace (unlike on real devices where it is 2x to 3x
16# faster).
17#
18# What this means is that the platform image will not use NEON code paths
19# that are slower to emulate. On the other hand, it is possible to emulate
20# application code generated with the NDK that uses NEON in the emulator.
21#
22TARGET_ARCH_VARIANT := armv7-a
23TARGET_CPU_ABI := armeabi-v7a
24TARGET_CPU_ABI2 := armeabi
Kenny Rootab4fbff2011-12-07 16:55:15 -080025ARCH_ARM_HAVE_TLS_REGISTER := true
David 'Digit' Turner5f5056f2011-06-15 15:33:24 +020026
The Android Open Source Project88b60792009-03-03 19:28:42 -080027HAVE_HTC_AUDIO_DRIVER := true
28BOARD_USES_GENERIC_AUDIO := true
Chih-Chung Changb9e030e2010-05-10 14:59:49 +080029
30# no hardware camera
31USE_CAMERA_STUB := true
Jean-Baptiste Queruf7a6ead2010-08-25 10:01:35 -070032
Jean-Baptiste Queru772a0f62011-05-18 13:49:08 -070033# Set /system/bin/sh to ash, not mksh, to make sure we can switch back.
34TARGET_SHELL := ash
David 'Digit' Turner43dd89d2011-08-23 22:25:13 +020035
David Turner94431142011-09-28 22:54:08 +020036# Enable dex-preoptimization to speed up the first boot sequence
37# of an SDK AVD. Note that this operation only works on Linux for now
38ifeq ($(HOST_OS),linux)
Raghu Gandhamb53cc7a2012-05-07 07:04:57 -070039 ifeq ($(WITH_DEXPREOPT),)
40 WITH_DEXPREOPT := true
41 endif
David Turner94431142011-09-28 22:54:08 +020042endif
43
David 'Digit' Turner43dd89d2011-08-23 22:25:13 +020044# Build OpenGLES emulation guest and host libraries
45BUILD_EMULATOR_OPENGL := true
Jesse Hall615d2ff2011-12-01 11:45:49 -080046
47# Build and enable the OpenGL ES View renderer. When running on the emulator,
48# the GLES renderer disables itself if host GL acceleration isn't available.
49USE_OPENGL_RENDERER := true