summaryrefslogtreecommitdiffstats
path: root/test-runner/Android.mk
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@android.com>2010-02-19 10:49:27 -0800
committerBrett Chabot <brettchabot@android.com>2010-02-20 17:29:05 -0800
commite70f61b1160e953e5e4d18d30a463fa9ba821779 (patch)
tree763d50921749fb256c7e2b656db045ee21277b06 /test-runner/Android.mk
parentfda25347b8aaa860e0fdbc972c0f4411c85f8fa3 (diff)
downloadframeworks_base-e70f61b1160e953e5e4d18d30a463fa9ba821779.zip
frameworks_base-e70f61b1160e953e5e4d18d30a463fa9ba821779.tar.gz
frameworks_base-e70f61b1160e953e5e4d18d30a463fa9ba821779.tar.bz2
Retry test-runner tests move.
This time change the frameworks makefile so it only includes test-runner/src in the public API.
Diffstat (limited to 'test-runner/Android.mk')
-rw-r--r--test-runner/Android.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/test-runner/Android.mk b/test-runner/Android.mk
index 42167c7..962e96c 100644
--- a/test-runner/Android.mk
+++ b/test-runner/Android.mk
@@ -18,10 +18,13 @@ LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(call all-subdir-java-files)
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_JAVA_LIBRARIES := core framework
LOCAL_MODULE:= android.test.runner
include $(BUILD_JAVA_LIBRARY)
+
+# additionally, build unit tests in a separate .apk
+include $(call all-makefiles-under,$(LOCAL_PATH))