aboutsummaryrefslogtreecommitdiffstats
path: root/libsysutils/Android.mk
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-07-11 22:12:32 -0700
committerJeff Brown <jeffbrown@google.com>2011-07-11 22:12:32 -0700
commit29e1e7393d1742f9dd5663c63026f50981e5bd89 (patch)
tree0baf9441d44fce10821ec9bf1f32655e5695a8aa /libsysutils/Android.mk
parent56286d6fdb07d8b1310c27eeb59bdf05500f166e (diff)
downloadsystem_core-29e1e7393d1742f9dd5663c63026f50981e5bd89.zip
system_core-29e1e7393d1742f9dd5663c63026f50981e5bd89.tar.gz
system_core-29e1e7393d1742f9dd5663c63026f50981e5bd89.tar.bz2
Remove the simulator target from all makefiles.
Bug: 5010576 Change-Id: I2fcf31af681d92880e5d31a46d5f6777f7ca1977
Diffstat (limited to 'libsysutils/Android.mk')
-rw-r--r--libsysutils/Android.mk11
1 files changed, 0 insertions, 11 deletions
diff --git a/libsysutils/Android.mk b/libsysutils/Android.mk
index 3b1f618..cccf484 100644
--- a/libsysutils/Android.mk
+++ b/libsysutils/Android.mk
@@ -1,10 +1,4 @@
ifneq ($(BUILD_TINY_ANDROID),true)
-BUILD_LIBSYSUTILS := false
-ifneq ($(TARGET_SIMULATOR),true)
- BUILD_LIBSYSUTILS := true
-endif
-
-ifeq ($(BUILD_LIBSYSUTILS),true)
LOCAL_PATH:= $(call my-dir)
@@ -27,11 +21,6 @@ LOCAL_CFLAGS :=
LOCAL_SHARED_LIBRARIES := libcutils
-ifeq ($(TARGET_SIMULATOR),true)
- LOCAL_LDLIBS += -lpthread
-endif
-
include $(BUILD_SHARED_LIBRARY)
endif
-endif