summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorChiao Cheng <chiaocheng@google.com>2012-09-05 16:00:16 -0700
committerChiao Cheng <chiaocheng@google.com>2012-09-05 16:00:16 -0700
commit9d4f3b20793a007b4489547aa40fc1049d0d8fef (patch)
tree4903ec17ccdc74d6c5977767052b2529b77bba14 /Android.mk
parent91197049c458f07092b31501d2ed512180b13d58 (diff)
downloadandroid_packages_apps_Dialer-9d4f3b20793a007b4489547aa40fc1049d0d8fef.tar.gz
android_packages_apps_Dialer-9d4f3b20793a007b4489547aa40fc1049d0d8fef.tar.bz2
android_packages_apps_Dialer-9d4f3b20793a007b4489547aa40fc1049d0d8fef.zip
Moving resources from Contacts to Dialer.
- Also moving some shared utilities. Bug: 6993891 Change-Id: I5fa18d26e4f5423f4d3f3450b8f3e3dacbfb947a
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk12
1 files changed, 7 insertions, 5 deletions
diff --git a/Android.mk b/Android.mk
index b41c394ee..68bb86a08 100644
--- a/Android.mk
+++ b/Android.mk
@@ -3,18 +3,20 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
-# This should become ContactsCommon
-contacts_common_dir := ../Contacts
+# all common code should eventually move to ContactsCommon and contacts should be removed
+# as a dependency.
+contacts_dir := ../Contacts
+contacts_common_dir := ../ContactsCommon
-src_dirs := src $(contacts_common_dir)/src
-res_dirs := res $(contacts_common_dir)/res
+src_dirs := src $(contacts_common_dir)/src $(contacts_dir)/src
+res_dirs := res $(contacts_common_dir)/res $(contacts_dir)/res
LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs))
LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))
LOCAL_AAPT_FLAGS := \
--auto-add-overlay \
- --extra-packages com.android.contacts
+ --extra-packages com.android.contacts:com.android.contacts.common
LOCAL_JAVA_LIBRARIES := telephony-common
LOCAL_STATIC_JAVA_LIBRARIES := \