OSDN Git Service

Remove the simulator target from all makefiles.
authorJeff Brown <jeffbrown@google.com>
Tue, 12 Jul 2011 05:12:33 +0000 (22:12 -0700)
committerJeff Brown <jeffbrown@google.com>
Tue, 12 Jul 2011 05:12:33 +0000 (22:12 -0700)
Bug: 5010576

Change-Id: I5a7df94d99dcb6f1de98bd9b8f659fd51a491c82

Android.mk
tests/binder/benchmarks/Android.mk
tests/framebuffer/Android.mk

index 08fe18f..cde61f6 100644 (file)
@@ -14,6 +14,4 @@
 # limitations under the License.
 #
 
-ifneq ($(TARGET_SIMULATOR),true)
-    include $(all-subdir-makefiles)
-endif
+include $(all-subdir-makefiles)
index 53d35a0..15dfe6c 100644 (file)
@@ -14,9 +14,6 @@
 # limitations under the License.
 #
 
-ifneq ($(TARGET_SIMULATOR),true) # GTest needs STLport, which the simulator
-                                 # doesn't support
-
 LOCAL_PATH:= $(call my-dir)
 
 include $(CLEAR_VARS)
@@ -44,5 +41,3 @@ LOCAL_C_INCLUDES += \
 LOCAL_MODULE := binderAddInts
 LOCAL_SRC_FILES := binderAddInts.cpp
 include $(BUILD_EXECUTABLE)
-
-endif
index 2c04857..3ee9828 100644 (file)
@@ -11,18 +11,10 @@ LOCAL_MODULE:= test-fb-refresh
 
 LOCAL_MODULE_TAGS := optional
 
-ifeq ($(TARGET_SIMULATOR),true)
-  ifeq ($(HOST_OS),linux)
-    # need this for clock_gettime()
-    LOCAL_LDLIBS += -lrt
-  endif
-endif
-
 include $(BUILD_EXECUTABLE)
 
 ##
 
-ifneq ($(TARGET_SIMULATOR),true)
 include $(CLEAR_VARS)
 LOCAL_SRC_FILES := fb_test.c
 LOCAL_MODULE = test-fb-simple
@@ -38,5 +30,3 @@ LOCAL_MODULE_TAGS := optional
 LOCAL_FORCE_STATIC_EXECUTABLE := true
 LOCAL_STATIC_LIBRARIES := libc
 include $(BUILD_EXECUTABLE)
-
-endif # sim