The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # config.mk |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 2 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 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 |
Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 9 | TARGET_ARCH := arm |
David 'Digit' Turner | 5f5056f | 2011-06-15 15:33:24 +0200 | [diff] [blame] | 10 | |
| 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 | # |
| 22 | TARGET_ARCH_VARIANT := armv7-a |
Christopher Ferris | 6103fd7 | 2013-02-22 17:24:25 -0800 | [diff] [blame] | 23 | TARGET_CPU_VARIANT := generic |
David 'Digit' Turner | 5f5056f | 2011-06-15 15:33:24 +0200 | [diff] [blame] | 24 | TARGET_CPU_ABI := armeabi-v7a |
| 25 | TARGET_CPU_ABI2 := armeabi |
| 26 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 27 | HAVE_HTC_AUDIO_DRIVER := true |
| 28 | BOARD_USES_GENERIC_AUDIO := true |
Chih-Chung Chang | b9e030e | 2010-05-10 14:59:49 +0800 | [diff] [blame] | 29 | |
| 30 | # no hardware camera |
| 31 | USE_CAMERA_STUB := true |
Jean-Baptiste Queru | f7a6ead | 2010-08-25 10:01:35 -0700 | [diff] [blame] | 32 | |
David Turner | 9443114 | 2011-09-28 22:54:08 +0200 | [diff] [blame] | 33 | # Enable dex-preoptimization to speed up the first boot sequence |
| 34 | # of an SDK AVD. Note that this operation only works on Linux for now |
| 35 | ifeq ($(HOST_OS),linux) |
Raghu Gandham | b53cc7a | 2012-05-07 07:04:57 -0700 | [diff] [blame] | 36 | ifeq ($(WITH_DEXPREOPT),) |
| 37 | WITH_DEXPREOPT := true |
| 38 | endif |
David Turner | 9443114 | 2011-09-28 22:54:08 +0200 | [diff] [blame] | 39 | endif |
| 40 | |
David 'Digit' Turner | 43dd89d | 2011-08-23 22:25:13 +0200 | [diff] [blame] | 41 | # Build OpenGLES emulation guest and host libraries |
| 42 | BUILD_EMULATOR_OPENGL := true |
Jesse Hall | 615d2ff | 2011-12-01 11:45:49 -0800 | [diff] [blame] | 43 | |
| 44 | # Build and enable the OpenGL ES View renderer. When running on the emulator, |
| 45 | # the GLES renderer disables itself if host GL acceleration isn't available. |
| 46 | USE_OPENGL_RENDERER := true |
Nick Kralevich | 3c9fae2 | 2013-07-09 18:04:51 -0700 | [diff] [blame] | 47 | |
Jamie Gennis | 782f2ad | 2013-10-06 16:02:02 -0700 | [diff] [blame] | 48 | # Set the phase offset of the system's vsync event relative to the hardware |
| 49 | # vsync. The system's vsync event drives Choreographer and SurfaceFlinger's |
| 50 | # rendering. This value is the number of nanoseconds after the hardware vsync |
| 51 | # that the system vsync event will occur. |
| 52 | # |
| 53 | # This phase offset allows adjustment of the minimum latency from application |
| 54 | # wake-up (by Choregographer) time to the time at which the resulting window |
| 55 | # image is displayed. This value may be either positive (after the HW vsync) |
| 56 | # or negative (before the HW vsync). Setting it to 0 will result in a |
| 57 | # minimum latency of two vsync periods because the app and SurfaceFlinger |
| 58 | # will run just after the HW vsync. Setting it to a positive number will |
| 59 | # result in the minimum latency being: |
| 60 | # |
| 61 | # (2 * VSYNC_PERIOD - (vsyncPhaseOffsetNs % VSYNC_PERIOD)) |
| 62 | # |
| 63 | # Note that reducing this latency makes it more likely for the applications |
| 64 | # to not have their window content image ready in time. When this happens |
| 65 | # the latency will end up being an additional vsync period, and animations |
| 66 | # will hiccup. Therefore, this latency should be tuned somewhat |
| 67 | # conservatively (or at least with awareness of the trade-off being made). |
| 68 | VSYNC_EVENT_PHASE_OFFSET_NS := 0 |
| 69 | |
Nick Kralevich | 3c9fae2 | 2013-07-09 18:04:51 -0700 | [diff] [blame] | 70 | TARGET_USERIMAGES_USE_EXT4 := true |
Nick Kralevich | 865ffd4 | 2013-07-12 20:28:59 -0700 | [diff] [blame] | 71 | BOARD_SYSTEMIMAGE_PARTITION_SIZE := 576716800 |
Tsu Chiang Chuang | 27a026c | 2014-05-06 17:27:20 -0700 | [diff] [blame] | 72 | BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800 |
Nick Kralevich | 3c9fae2 | 2013-07-09 18:04:51 -0700 | [diff] [blame] | 73 | BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016 |
| 74 | BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 75 | BOARD_FLASH_BLOCK_SIZE := 512 |
| 76 | TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true |
Stephen Smalley | 1d5352e | 2013-11-05 09:37:41 -0500 | [diff] [blame] | 77 | |
| 78 | BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy |
Stephen Smalley | 61c7107 | 2013-12-24 11:34:28 -0500 | [diff] [blame] | 79 | BOARD_SEPOLICY_UNION += \ |
| 80 | bootanim.te \ |
Stephen Smalley | 768ff51 | 2014-02-25 13:37:06 -0500 | [diff] [blame] | 81 | device.te \ |
Stephen Smalley | 61c7107 | 2013-12-24 11:34:28 -0500 | [diff] [blame] | 82 | domain.te \ |
Stephen Smalley | 768ff51 | 2014-02-25 13:37:06 -0500 | [diff] [blame] | 83 | file.te \ |
| 84 | file_contexts \ |
Stephen Smalley | 704744a | 2014-09-03 11:07:03 -0400 | [diff] [blame] | 85 | goldfish_setup.te \ |
| 86 | goldfish_logcat.te \ |
| 87 | property.te \ |
| 88 | property_contexts \ |
| 89 | qemu_props.te \ |
Stephen Smalley | 768ff51 | 2014-02-25 13:37:06 -0500 | [diff] [blame] | 90 | qemud.te \ |
| 91 | rild.te \ |
Nick Kralevich | b20966f | 2014-03-18 15:17:35 -0700 | [diff] [blame] | 92 | shell.te \ |
Stephen Smalley | 768ff51 | 2014-02-25 13:37:06 -0500 | [diff] [blame] | 93 | surfaceflinger.te \ |
dcashman | 38a261a | 2014-06-16 14:17:05 -0700 | [diff] [blame] | 94 | system_server.te |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 95 | |
| 96 | ifeq ($(TARGET_PRODUCT),sdk) |
| 97 | # include an expanded selection of fonts for the SDK. |
| 98 | EXTENDED_FONT_FOOTPRINT := true |
| 99 | endif |