summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk10
1 files changed, 6 insertions, 4 deletions
diff --git a/Android.mk b/Android.mk
index 8f1190ef..c69a2ccd 100644
--- a/Android.mk
+++ b/Android.mk
@@ -28,7 +28,9 @@ include $(CLEAR_VARS)
# specifying which JS engine to use.
# Build libv8 and v8shell
-ENABLE_V8_SNAPSHOT = true
-include $(BASE_PATH)/Android.mksnapshot.mk
-include $(BASE_PATH)/Android.libv8.mk
-include $(BASE_PATH)/Android.v8shell.mk
+ifeq ($(TARGET_ARCH),arm)
+ ENABLE_V8_SNAPSHOT = true
+ include $(BASE_PATH)/Android.mksnapshot.mk
+ include $(BASE_PATH)/Android.libv8.mk
+ include $(BASE_PATH)/Android.v8shell.mk
+endif