summaryrefslogtreecommitdiffstats
path: root/location/tests/locationtests/Android.mk
diff options
context:
space:
mode:
authorNeal Nguyen <tommyn@google.com>2010-01-07 10:14:05 -0800
committerNeal Nguyen <tommyn@google.com>2010-01-27 13:36:38 -0800
commit22e31e5b609136d5bf7d77b1dccd6b042b83ebdf (patch)
treed42bca2b4b406fa1fda149365985a25e2692b2dc /location/tests/locationtests/Android.mk
parent9ecaf8b8da6a556be6143b74b9e77cf4e08ff1e8 (diff)
downloadframeworks_base-22e31e5b609136d5bf7d77b1dccd6b042b83ebdf.zip
frameworks_base-22e31e5b609136d5bf7d77b1dccd6b042b83ebdf.tar.gz
frameworks_base-22e31e5b609136d5bf7d77b1dccd6b042b83ebdf.tar.bz2
Moving framework core tests closer to their source files.
Phase 2 of test case cleanup; distributing CoreTests files closer to their respective sources under frameworks.
Diffstat (limited to 'location/tests/locationtests/Android.mk')
-rw-r--r--location/tests/locationtests/Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/location/tests/locationtests/Android.mk b/location/tests/locationtests/Android.mk
new file mode 100644
index 0000000..902cd96
--- /dev/null
+++ b/location/tests/locationtests/Android.mk
@@ -0,0 +1,14 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+# We only want this apk build for tests.
+LOCAL_MODULE_TAGS := tests
+
+# Include all test java files.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_JAVA_LIBRARIES := android.test.runner
+LOCAL_PACKAGE_NAME := FrameworksLocationTests
+
+include $(BUILD_PACKAGE)
+