2009-03-04 03:32:22 +00:00
# Copyright 2008, The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2011-02-14 22:39:27 +00:00
LOCAL_PATH := $( call my-dir)
2012-06-28 17:40:46 +00:00
# Build the Email application itself, along with its tests and tests for the emailcommon
2011-02-14 22:39:27 +00:00
# static library. All tests can be run via runtest email
2009-03-04 03:32:22 +00:00
i n c l u d e $( CLEAR_VARS )
2012-06-28 17:40:46 +00:00
2013-03-15 02:58:21 +00:00
# Include res dir from chips, unified, emailcommon, and photoviewer
2015-05-19 23:10:17 +00:00
appcompat_dir := ../../../$( SUPPORT_LIBRARY_ROOT) /v7/appcompat/res
2014-03-21 21:24:51 +00:00
chips_dir := ../../../frameworks/opt/chips/res
2012-06-28 17:40:46 +00:00
unified_email_dir := ../UnifiedEmail
2014-08-19 20:57:33 +00:00
photo_dir := ../../../frameworks/opt/photoviewer/res ../../../frameworks/opt/photoviewer/appcompat/res
2013-03-15 02:58:21 +00:00
emailcommon_dir := emailcommon
2015-05-19 23:10:17 +00:00
gridlayout_dir := ../../../$( SUPPORT_LIBRARY_ROOT) /v7/gridlayout/res
2014-07-11 21:24:42 +00:00
bitmap_dir := ../../../frameworks/opt/bitmap/res
2013-10-22 01:41:30 +00:00
datetimepicker_dir := ../../../frameworks/opt/datetimepicker/res
2014-07-31 22:12:55 +00:00
res_dir := res $( unified_email_dir) /res $( chips_dir) $( photo_dir) $( emailcommon_dir) /res $( appcompat_dir) $( gridlayout_dir) $( bitmap_dir) $( datetimepicker_dir)
2009-03-04 03:32:22 +00:00
2010-01-05 19:09:51 +00:00
LOCAL_MODULE_TAGS := optional
2012-06-28 17:40:46 +00:00
LOCAL_SRC_FILES := $( call all-java-files-under, $( unified_email_dir) /src)
LOCAL_SRC_FILES += $( call all-java-files-under, src/com/android)
2014-09-07 20:36:33 +00:00
LOCAL_SRC_FILES += $( call all-java-files-under, provider_src/com/android)
2011-02-14 22:39:27 +00:00
LOCAL_SRC_FILES += $( call all-java-files-under, src/com/beetstra)
2012-06-28 17:40:46 +00:00
2011-06-16 02:35:15 +00:00
LOCAL_RESOURCE_DIR := $( addprefix $( LOCAL_PATH) /, $( res_dir) )
2012-06-28 17:40:46 +00:00
# Use assets dir from UnifiedEmail
# (the default package target doesn't seem to deal with multiple asset dirs)
LOCAL_ASSET_DIR := $( LOCAL_PATH) /$( unified_email_dir) /assets
2009-03-04 03:32:22 +00:00
2012-06-28 17:40:46 +00:00
LOCAL_AAPT_FLAGS := --auto-add-overlay
2014-07-31 22:12:55 +00:00
LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips:com.android.mail:com.android.email:com.android.emailcommon:com.android.ex.photo:android.support.v7.appcompat:android.support.v7.gridlayout:com.android.bitmap:com.android.datetimepicker
2012-06-28 17:40:46 +00:00
2014-08-19 20:57:33 +00:00
LOCAL_STATIC_JAVA_LIBRARIES := android-common com.android.emailcommon guava libchips
LOCAL_STATIC_JAVA_LIBRARIES += libphotoviewer_appcompat
2012-06-28 17:40:46 +00:00
LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
2014-07-31 22:12:55 +00:00
LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-appcompat
2013-08-28 00:40:28 +00:00
LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-gridlayout
2012-06-28 17:40:46 +00:00
LOCAL_STATIC_JAVA_LIBRARIES += android-support-v13
2014-07-11 21:24:42 +00:00
LOCAL_STATIC_JAVA_LIBRARIES += android-opt-bitmap
2013-10-22 01:41:30 +00:00
LOCAL_STATIC_JAVA_LIBRARIES += android-opt-datetimepicker
2014-05-22 20:16:38 +00:00
LOCAL_STATIC_JAVA_LIBRARIES += owasp-html-sanitizer
2009-03-04 03:32:22 +00:00
2014-12-12 11:38:19 +00:00
LOCAL_JAVA_LIBRARIES := org.apache.http.legacy
2013-08-16 01:12:40 +00:00
LOCAL_PACKAGE_NAME := Email
2010-03-02 22:03:08 +00:00
2012-06-28 17:40:46 +00:00
LOCAL_PROGUARD_FLAG_FILES := proguard.flags $( unified_email_dir) /proguard.flags
2014-08-01 17:53:36 +00:00
i f e q ( e n g , $( TARGET_BUILD_VARIANT ) )
LOCAL_PROGUARD_FLAG_FILES += proguard-test.flags
e n d i f
2011-02-14 22:39:27 +00:00
2013-11-06 01:54:30 +00:00
LOCAL_SDK_VERSION := current
2010-06-15 00:36:44 +00:00
2009-03-04 03:32:22 +00:00
i n c l u d e $( BUILD_PACKAGE )
2011-03-01 23:56:27 +00:00
# only include rules to build other stuff for the original package, not the derived package.
2011-02-14 22:39:27 +00:00
i f e q ( $( strip $ ( LOCAL_PACKAGE_OVERRIDES ) ) , )
2009-03-04 03:32:22 +00:00
# additionally, build unit tests in a separate .apk
i n c l u d e $( call all -makefiles -under ,$ ( LOCAL_PATH ) )
2011-02-14 22:39:27 +00:00
e n d i f