summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Android.d8.mk (renamed from Android.v8shell.mk)7
-rw-r--r--Android.mk4
2 files changed, 7 insertions, 4 deletions
diff --git a/Android.v8shell.mk b/Android.d8.mk
index efe8ddfc..0f74eb5e 100644
--- a/Android.v8shell.mk
+++ b/Android.d8.mk
@@ -4,8 +4,11 @@ include $(CLEAR_VARS)
LOCAL_SHARED_LIBRARIES := libstlport
include external/stlport/libstlport.mk
-LOCAL_SRC_FILES:= samples/shell.cc
-LOCAL_MODULE := v8shell
+LOCAL_SRC_FILES := \
+ src/d8.cc \
+ src/d8-posix.cc
+
+LOCAL_MODULE := d8
LOCAL_CPP_EXTENSION := .cc
diff --git a/Android.mk b/Android.mk
index ff42934e..ec89b78d 100644
--- a/Android.mk
+++ b/Android.mk
@@ -23,10 +23,10 @@ ifeq ($(TARGET_ARCH),arm)
endif
endif
-# Build libv8 and v8shell
+# Build libv8 and d8
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.v8shell.mk
+ include $(BASE_PATH)/Android.d8.mk
endif