Skip to content

Commit 6f23f0d

Browse files
author
Jeff Brown
committed
Remove the simulator target from all makefiles.
Bug: 5010576 Change-Id: I5a7df94d99dcb6f1de98bd9b8f659fd51a491c82
1 parent fda77ea commit 6f23f0d

File tree

3 files changed

+1
-18
lines changed

3 files changed

+1
-18
lines changed

Android.mk

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
ifneq ($(TARGET_SIMULATOR),true)
18-
include $(all-subdir-makefiles)
19-
endif
17+
include $(all-subdir-makefiles)

tests/binder/benchmarks/Android.mk

-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
# limitations under the License.
1515
#
1616

17-
ifneq ($(TARGET_SIMULATOR),true) # GTest needs STLport, which the simulator
18-
# doesn't support
19-
2017
LOCAL_PATH:= $(call my-dir)
2118

2219
include $(CLEAR_VARS)
@@ -44,5 +41,3 @@ LOCAL_C_INCLUDES += \
4441
LOCAL_MODULE := binderAddInts
4542
LOCAL_SRC_FILES := binderAddInts.cpp
4643
include $(BUILD_EXECUTABLE)
47-
48-
endif

tests/framebuffer/Android.mk

-10
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,10 @@ LOCAL_MODULE:= test-fb-refresh
1111

1212
LOCAL_MODULE_TAGS := optional
1313

14-
ifeq ($(TARGET_SIMULATOR),true)
15-
ifeq ($(HOST_OS),linux)
16-
# need this for clock_gettime()
17-
LOCAL_LDLIBS += -lrt
18-
endif
19-
endif
20-
2114
include $(BUILD_EXECUTABLE)
2215

2316
##
2417

25-
ifneq ($(TARGET_SIMULATOR),true)
2618
include $(CLEAR_VARS)
2719
LOCAL_SRC_FILES := fb_test.c
2820
LOCAL_MODULE = test-fb-simple
@@ -38,5 +30,3 @@ LOCAL_MODULE_TAGS := optional
3830
LOCAL_FORCE_STATIC_EXECUTABLE := true
3931
LOCAL_STATIC_LIBRARIES := libc
4032
include $(BUILD_EXECUTABLE)
41-
42-
endif # sim

0 commit comments

Comments
 (0)