summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Android.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 148c60e8..0410c048 100644
--- a/Android.mk
+++ b/Android.mk
@@ -23,10 +23,13 @@ ifeq ($(TARGET_ARCH),arm)
endif
endif
-# Build libv8 and d8
-ifneq ($(filter $(TARGET_ARCH),x86 arm mips),)
+# Build libv8 and v8shell
+ifeq ($(DYNAMIC_SHARED_LIBV8SO),true)
+else
+ifneq ($(filter $(TARGET_ARCH),x86 arm),)
ENABLE_V8_SNAPSHOT = true
include $(BASE_PATH)/Android.mksnapshot.mk
include $(BASE_PATH)/Android.libv8.mk
include $(BASE_PATH)/Android.d8.mk
endif
+endif