Merge "Remove the simulator target from all makefiles. Bug: 5010576"

This commit is contained in:
Jeff Brown 2011-07-12 12:15:45 -07:00 committed by Android (Google) Code Review
commit d37dcfa70a

View file

@ -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)