summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:48 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:48 -0800
commitd51f49a11dad52e172e4d7f6fcdf571f24efbcd5 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /Android.mk
parentb5d75924d7a17452b157dc12de31d254f8af1831 (diff)
downloadhardware_libhardware-d51f49a11dad52e172e4d7f6fcdf571f24efbcd5.zip
hardware_libhardware-d51f49a11dad52e172e4d7f6fcdf571f24efbcd5.tar.gz
hardware_libhardware-d51f49a11dad52e172e4d7f6fcdf571f24efbcd5.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk35
1 files changed, 0 insertions, 35 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index b2e9caf..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2006 The Android Open Source Project
-
-# Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
-SAVE_MAKEFILES := $(call all-subdir-makefiles)
-
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_SHARED_LIBRARIES := libcutils
-
-LOCAL_INCLUDES += $(LOCAL_PATH)
-
-ifneq ($(TARGET_SIMULATOR),true)
- LOCAL_CFLAGS += -DQEMU_HARDWARE
- QEMU_HARDWARE := true
-endif
-
-ifneq ($(TARGET_SIMULATOR),true)
-LOCAL_SHARED_LIBRARIES += libdl
-endif
-
-include $(SAVE_MAKEFILES)
-
-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)