summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk21
1 files changed, 20 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index e39b360a..941d13e9 100644
--- a/Android.mk
+++ b/Android.mk
@@ -13,5 +13,24 @@
# limitations under the License.
LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
-include $(LOCAL_PATH)/TestCommon/Android.mk
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, res)
+
+LOCAL_STATIC_JAVA_LIBRARIES := \
+ com.android.phone.shared \
+ guava \
+ android-support-v13 \
+ android-support-v4 \
+
+LOCAL_PACKAGE_NAME := com.android.contacts.common
+
+LOCAL_PROGUARD_FLAG_FILES := proguard.flags
+
+include $(BUILD_PACKAGE)
+
+# Use the folloing include to make our test apk.
+include $(call all-makefiles-under,$(LOCAL_PATH))