diff options
-rw-r--r-- | Android.mk | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |