summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk15
1 files changed, 2 insertions, 13 deletions
diff --git a/Android.mk b/Android.mk
index 30b3337..7467bf2 100644
--- a/Android.mk
+++ b/Android.mk
@@ -10,24 +10,13 @@ LOCAL_SHARED_LIBRARIES := libcutils
LOCAL_INCLUDES += $(LOCAL_PATH)
-ifneq ($(TARGET_SIMULATOR),true)
- LOCAL_CFLAGS += -DQEMU_HARDWARE
- QEMU_HARDWARE := true
-endif
+LOCAL_CFLAGS += -DQEMU_HARDWARE
+QEMU_HARDWARE := true
-ifneq ($(TARGET_SIMULATOR),true)
LOCAL_SHARED_LIBRARIES += libdl
-endif
LOCAL_SRC_FILES += hardware.c
-# need "-lrt" on Linux simulator to pick up clock_gettime
-ifeq ($(TARGET_SIMULATOR),true)
- ifeq ($(HOST_OS),linux)
- LOCAL_LDLIBS += -lrt -lpthread -ldl
- endif
-endif
-
LOCAL_MODULE:= libhardware
include $(BUILD_SHARED_LIBRARY)