summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 8caada9..b6e318e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -82,7 +82,10 @@ endif
ifeq ($(TARGET_SIMULATOR),false)
HTTP_STACK = $(HTTP)
ifneq ($(HTTP_STACK),android)
- HTTP_STACK = chrome
+ # Chrome net stack has dependencies on V8.
+ ifeq ($(JAVASCRIPT_ENGINE), v8)
+ HTTP_STACK = chrome
+ endif
endif
endif