summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2010-08-07 10:08:28 -0700
committerKoushik Dutta <koushd@gmail.com>2010-08-07 10:11:48 -0700
commit15b4fa6df76582ae62236b94efc70f21248841ad (patch)
treeb50f3da914a127f73f618c39e0dc0ca682c9977c /Android.mk
parent6599b9dd3411791c9d89ab7efbfb4131e5664c48 (diff)
downloadandroid_external_v8-froyo.tar.gz
android_external_v8-froyo.tar.bz2
android_external_v8-froyo.zip
Add the option to disable v8 mksnapshot via the buildspec.mk to fix the builds on Darwin x86_64.froyo-stablefroyo
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index d8fea851..1a873783 100644
--- a/Android.mk
+++ b/Android.mk
@@ -30,8 +30,10 @@ include $(CLEAR_VARS)
# Build libv8 and v8shell
# TODO: remove the check when the v8 build is fixed for x86
ifeq ($(TARGET_ARCH),arm)
+ ifneq ($(DISABLE_V8_SNAPSHOT),true)
ENABLE_V8_SNAPSHOT = true
include $(BASE_PATH)/Android.mksnapshot.mk
+ endif
include $(BASE_PATH)/Android.libv8.mk
include $(BASE_PATH)/Android.v8shell.mk
endif