summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-06-02 12:31:34 +0100
committerSteve Block <steveblock@google.com>2011-06-02 13:45:00 +0100
commitf7f02cc828d7fb400b5e47729dfc43ac58bef9b5 (patch)
treee6cb4dd78e12c4900425137ca6a0ed11d432193e /Android.mk
parente0cee9b3ed82e2391fd85d118aeaa4ea361c687d (diff)
downloadandroid_external_v8-f7f02cc828d7fb400b5e47729dfc43ac58bef9b5.tar.gz
android_external_v8-f7f02cc828d7fb400b5e47729dfc43ac58bef9b5.tar.bz2
android_external_v8-f7f02cc828d7fb400b5e47729dfc43ac58bef9b5.zip
Remove incomplete x86 support
x86 support is required for the simulator build. However, V8 does not currently work with x86, so we use JSC in this case. This patch removes the incomplete x86 support. Change-Id: I74bbca8a044d5ee606f2fc03432eabc2ef6cde76
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk11
1 files changed, 4 insertions, 7 deletions
diff --git a/Android.mk b/Android.mk
index d8fea851..8f1190ef 100644
--- a/Android.mk
+++ b/Android.mk
@@ -28,10 +28,7 @@ include $(CLEAR_VARS)
# specifying which JS engine to use.
# Build libv8 and v8shell
-# TODO: remove the check when the v8 build is fixed for x86
-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
+ENABLE_V8_SNAPSHOT = true
+include $(BASE_PATH)/Android.mksnapshot.mk
+include $(BASE_PATH)/Android.libv8.mk
+include $(BASE_PATH)/Android.v8shell.mk