summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2011-03-01 15:56:27 -0800
committerYing Wang <wangying@google.com>2011-03-01 15:56:27 -0800
commit37f3385803de19d4b6fb4ef1b1ac9a6196dec98c (patch)
treeaf13bc949541a45c208d4acb85eae991bebd28cb /Android.mk
parent5297b452a2dd017ce4054e751f7bab64ca7a5b11 (diff)
downloadandroid_packages_apps_Email-37f3385803de19d4b6fb4ef1b1ac9a6196dec98c.tar.gz
android_packages_apps_Email-37f3385803de19d4b6fb4ef1b1ac9a6196dec98c.tar.bz2
android_packages_apps_Email-37f3385803de19d4b6fb4ef1b1ac9a6196dec98c.zip
Split out emailcommon/Android.mk
Change-Id: I846ee2a4b541f4709e647aa537c61549db2bec2e
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk23
1 files changed, 1 insertions, 22 deletions
diff --git a/Android.mk b/Android.mk
index 1a84cf53b..aea26d4d6 100644
--- a/Android.mk
+++ b/Android.mk
@@ -41,29 +41,8 @@ LOCAL_EMMA_COVERAGE_FILTER := +com.android.emailcommon.*,+com.android.email.*, \
include $(BUILD_PACKAGE)
-# only include rules to build other stuff for the original package, not derived package.
+# only include rules to build other stuff for the original package, not the derived package.
ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),)
-
-# Build the com.android.emailcommon static library. At the moment, this includes
-# the emailcommon files themselves plus everything under src/org (apache code). All of our
-# AIDL files are also compiled into the static library
-
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := com.android.emailcommon
-LOCAL_SRC_FILES := $(call all-java-files-under, src/com/android/emailcommon)
-LOCAL_SRC_FILES += $(call all-java-files-under, src/org)
-LOCAL_SRC_FILES += \
- src/com/android/emailcommon/service/IEmailService.aidl \
- src/com/android/emailcommon/service/IEmailServiceCallback.aidl \
- src/com/android/emailcommon/service/IPolicyService.aidl \
- src/com/android/emailcommon/service/IAccountService.aidl
-
-LOCAL_SDK_VERSION := current
-
-include $(BUILD_STATIC_JAVA_LIBRARY)
-
# additionally, build unit tests in a separate .apk
include $(call all-makefiles-under,$(LOCAL_PATH))
-
endif