summaryrefslogtreecommitdiffstats
path: root/libs/ui/tests
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2010-07-14 22:40:08 -0700
committerJeff Brown <jeffbrown@google.com>2010-07-14 22:55:02 -0700
commita50ee3ecb377c69758254a0af9542bb64ecc5b71 (patch)
tree6498bb2b0c2c46e921a2c5ba3f85549ca23d3d85 /libs/ui/tests
parentbce6e1736e2d4b160be4268557d1b91b19bee632 (diff)
downloadframeworks_native-a50ee3ecb377c69758254a0af9542bb64ecc5b71.zip
frameworks_native-a50ee3ecb377c69758254a0af9542bb64ecc5b71.tar.gz
frameworks_native-a50ee3ecb377c69758254a0af9542bb64ecc5b71.tar.bz2
Don't build framework tests for simulator target.
Change-Id: I70f29c7eb307e4f3ec5702f4eb9d97b4342e2f36
Diffstat (limited to 'libs/ui/tests')
-rw-r--r--libs/ui/tests/Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ui/tests/Android.mk b/libs/ui/tests/Android.mk
index 46d7493..62f824f 100644
--- a/libs/ui/tests/Android.mk
+++ b/libs/ui/tests/Android.mk
@@ -2,6 +2,9 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
+ifneq ($(TARGET_SIMULATOR),true)
+
+# Build the unit tests.
test_src_files := \
InputChannel_test.cpp \
InputDispatcher_test.cpp \
@@ -43,3 +46,5 @@ $(foreach file,$(test_src_files), \
# Build the manual test programs.
include $(call all-subdir-makefiles)
+
+endif \ No newline at end of file