summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNaiem Shaik <snaiem@codeaurora.org>2012-07-23 14:02:41 -0700
committerSteve Kondik <shade@chemlab.org>2013-11-21 22:30:25 -0800
commit26c91cfdaf34be49dfc9cf44ae7d59108d97348f (patch)
treea7b2b267fde522f3c74065c640f18025551329bf
parent6f2b68ab11d564d25eeba36b6e8bdb44ab5b1ba4 (diff)
downloadandroid_external_v8-stable/cm-10.2.tar.gz
android_external_v8-stable/cm-10.2.tar.bz2
android_external_v8-stable/cm-10.2.zip
Allow dynamically shared librarycm-10.2.1cm-10.2.0stable/cm-10.2cm-10.2
Change-Id: I08c4019e28ca68abb1241370294ac4dd1303fe34
-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