summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChinh Tran <chinht@codeaurora.org>2010-11-03 14:48:43 -0700
committerChinh Tran <chinht@codeaurora.org>2010-11-03 14:48:43 -0700
commit88c9b15b3a9937c3c2531c532cd644dfcd12f5fd (patch)
tree300ce8491eb79d7454eb584747a210f9e1da81b3
parent8d0860a47146126fea6395b8fd3a4059b5dc0903 (diff)
downloadandroid_external_connectivity-88c9b15b3a9937c3c2531c532cd644dfcd12f5fd.tar.gz
android_external_connectivity-88c9b15b3a9937c3c2531c532cd644dfcd12f5fd.tar.bz2
android_external_connectivity-88c9b15b3a9937c3c2531c532cd644dfcd12f5fd.zip
external/connectivity: Do not build connectivity modules if it is simulator
Currently Stlport is not supported for simulator and cnd iproute2 uses Stlport. Add new make file in connectivity project to not build the connectivity modules for simulator build. Change-Id: I9882d95cbe3aa2723ebcf9bd7d6da1c32901ca7f
-rw-r--r--Android.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..ba187a6
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,3 @@
+ifneq ($(TARGET_SIMULATOR),true)
+include $(call all-subdir-makefiles)
+endif