summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorJunda Liu <junda@google.com>2015-06-17 23:00:57 -0700
committerJonathan Basseri <misterikkit@google.com>2015-06-19 10:07:17 -0700
commitee61e79b8c842f0fa33a48fa0d099435f5b2c617 (patch)
treed9cb7c43d92fe7a3c0615ec390d7b648e6c51dc7 /Android.mk
parent449236a9616591b07a9ff93f6888b89706ec9b37 (diff)
downloadandroid_packages_apps_CarrierConfig-ee61e79b8c842f0fa33a48fa0d099435f5b2c617.tar.gz
android_packages_apps_CarrierConfig-ee61e79b8c842f0fa33a48fa0d099435f5b2c617.tar.bz2
android_packages_apps_CarrierConfig-ee61e79b8c842f0fa33a48fa0d099435f5b2c617.zip
Add tests for CarrierConfig app.
These tests check that all asset XML files can be parsed into bundles and that they use valid filter attributes. Bug: b/21619172 Change-Id: I4242f77c3c7e8b0e2027bca164f7276b89bbcfb1
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 40744ed..e6a9f2d 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,7 +1,7 @@
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 := telephony-common
@@ -13,3 +13,5 @@ LOCAL_PROGUARD_FLAG_FILES := proguard.flags
include $(BUILD_PACKAGE)
+# This finds and builds the test apk as well, so a single make does both.
+include $(call all-makefiles-under,$(LOCAL_PATH))