summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk20
1 files changed, 0 insertions, 20 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index b0ec4a5..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,20 +0,0 @@
-# For Android L MR1 and lower, need to include libstlport
-# For M, this is not needed
-MAJOR_VERSION := $(shell echo $(PLATFORM_VERSION) | cut -f1 -d.)
-MINOR_VERSION := $(shell echo $(PLATFORM_VERSION) | cut -f2 -d.)
-
-ifeq ($(shell test $(MAJOR_VERSION) -le 4 && echo 1), 1)
-INCLUDE_STLPORT:=true
-else ifeq ($(shell test $(MAJOR_VERSION) -eq 5 -a $(MINOR_VERSION) -le 1 && echo 1), 1)
-INCLUDE_STLPORT:=true
-else
-INCLUDE_STLPORT:=false
-endif
-
-# Recursive call sub-folder Android.mk
-#
-ifneq ($(USE_CUSTOM_PARAMETER_FRAMEWORK), true)
-ifeq ($(HOST_OS),linux)
-include $(call all-subdir-makefiles)
-endif
-endif