diff options
| author | Ricardo Cerqueira <github@cerqueira.org> | 2012-01-26 01:07:52 +0000 |
|---|---|---|
| committer | Lalit Maganti <lalitmaganti@gmail.com> | 2012-07-11 02:21:06 -0700 |
| commit | 398d3a7a2fa29b9510a2dff711decc577fc1ddc9 (patch) | |
| tree | 56b1349658f2e5de4b9bbfb2531957c720704ef2 | |
| parent | 7d088e4f8fcf1ffd0817802d219d55b6122a4736 (diff) | |
| download | android_external_v8-398d3a7a2fa29b9510a2dff711decc577fc1ddc9.tar.gz android_external_v8-398d3a7a2fa29b9510a2dff711decc577fc1ddc9.tar.bz2 android_external_v8-398d3a7a2fa29b9510a2dff711decc577fc1ddc9.zip | |
v8: Fix running on armv6-vfp devices
We need v8 to run chromium HTTP, and we need chromium HTTP for
stagefright to do streaming.
v8 works just fine on 7227 if you remove the snapshots
Change-Id: I26dce23db4bc72749fc4bee91ca484df35dc1fd4
| -rw-r--r-- | Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,8 +25,12 @@ endif # Build libv8 and v8shell ifneq ($(filter $(TARGET_ARCH),x86 arm),) + ifeq ($(ARCH_ARM_HAVE_ARMV7A),true) + ifneq ($(ARCH_ARM_HAVE_ARMV7A_BUG),true) ENABLE_V8_SNAPSHOT = true include $(BASE_PATH)/Android.mksnapshot.mk + endif + endif include $(BASE_PATH)/Android.libv8.mk include $(BASE_PATH)/Android.v8shell.mk endif |
