diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-07-14 22:40:08 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-07-14 22:55:02 -0700 |
commit | a50ee3ecb377c69758254a0af9542bb64ecc5b71 (patch) | |
tree | 6498bb2b0c2c46e921a2c5ba3f85549ca23d3d85 /libs/utils | |
parent | bce6e1736e2d4b160be4268557d1b91b19bee632 (diff) | |
download | frameworks_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/utils')
-rw-r--r-- | libs/utils/tests/Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/utils/tests/Android.mk b/libs/utils/tests/Android.mk index f1b8cd5..b9f206a 100644 --- a/libs/utils/tests/Android.mk +++ b/libs/utils/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 := \ ObbFile_test.cpp \ PollLoop_test.cpp @@ -37,3 +40,5 @@ $(foreach file,$(test_src_files), \ $(eval LOCAL_MODULE_TAGS := $(module_tags)) \ $(eval include $(BUILD_EXECUTABLE)) \ ) + +endif
\ No newline at end of file |