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
|
|
|
include $(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
|
2011-06-16 02:35:15 +00:00
|
|
|
chips_dir := ../../../frameworks/ex/chips/res
|
2012-06-28 17:40:46 +00:00
|
|
|
unified_email_dir := ../UnifiedEmail
|
2013-08-21 04:42:06 +00:00
|
|
|
photo_dir := ../../../frameworks/opt/photoviewer/res ../../../frameworks/opt/photoviewer/activity/res
|
2013-03-15 02:58:21 +00:00
|
|
|
emailcommon_dir := emailcommon
|
2013-08-28 00:40:28 +00:00
|
|
|
gridlayout_dir := ../../../frameworks/support/v7/gridlayout/res
|
2013-10-22 01:41:30 +00:00
|
|
|
datetimepicker_dir := ../../../frameworks/opt/datetimepicker/res
|
|
|
|
res_dir := res $(unified_email_dir)/res $(chips_dir) $(photo_dir) $(emailcommon_dir)/res $(gridlayout_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)
|
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
|
2013-10-22 01:41:30 +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.gridlayout:com.android.datetimepicker
|
2012-06-28 17:40:46 +00:00
|
|
|
|
2013-03-15 02:58:21 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android-common com.android.emailcommon com.android.emailsync guava android-common-chips libphotoviewer
|
2012-06-28 17:40:46 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
|
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
|
2013-10-22 01:41:30 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += android-opt-datetimepicker
|
2009-03-04 03:32:22 +00:00
|
|
|
|
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
|
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
|
|
|
include $(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
|
|
|
ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),)
|
2009-03-04 03:32:22 +00:00
|
|
|
# additionally, build unit tests in a separate .apk
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
2011-02-14 22:39:27 +00:00
|
|
|
endif
|