Home | History | Annotate | Download | only in Email
      1 # Copyright 2008, The Android Open Source Project
      2 #
      3 # Licensed under the Apache License, Version 2.0 (the "License");
      4 # you may not use this file except in compliance with the License.
      5 # You may obtain a copy of the License at
      6 #
      7 #     http://www.apache.org/licenses/LICENSE-2.0
      8 #
      9 # Unless required by applicable law or agreed to in writing, software
     10 # distributed under the License is distributed on an "AS IS" BASIS,
     11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 # See the License for the specific language governing permissions and
     13 # limitations under the License.
     14 
     15 LOCAL_PATH := $(call my-dir)
     16 
     17 # Build the Email application itself, along with its tests and tests for the emailcommon
     18 # static library.  All tests can be run via runtest email
     19 
     20 include $(CLEAR_VARS)
     21 
     22 # Include res dir from chips, unified, emailcommon, and photoviewer
     23 appcompat_dir := ../../../prebuilts/sdk/current/support/v7/appcompat/res
     24 chips_dir := ../../../frameworks/opt/chips/res
     25 unified_email_dir := ../UnifiedEmail
     26 photo_dir := ../../../frameworks/opt/photoviewer/res ../../../frameworks/opt/photoviewer/activity/res
     27 emailcommon_dir := emailcommon
     28 gridlayout_dir := ../../../prebuilts/sdk/current/support/v7/gridlayout/res
     29 bitmap_dir := ../../../frameworks/opt/bitmap/res
     30 datetimepicker_dir := ../../../frameworks/opt/datetimepicker/res
     31 res_dir := res $(unified_email_dir)/res $(chips_dir) $(photo_dir) $(emailcommon_dir)/res $(appcompat_dir) $(gridlayout_dir) $(bitmap_dir) $(datetimepicker_dir)
     32 
     33 LOCAL_MODULE_TAGS := optional
     34 
     35 LOCAL_SRC_FILES := $(call all-java-files-under, $(unified_email_dir)/src)
     36 LOCAL_SRC_FILES += $(call all-java-files-under, src/com/android)
     37 LOCAL_SRC_FILES += $(call all-java-files-under, src/com/beetstra)
     38 
     39 LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dir))
     40 
     41 # Use assets dir from UnifiedEmail
     42 # (the default package target doesn't seem to deal with multiple asset dirs)
     43 LOCAL_ASSET_DIR := $(LOCAL_PATH)/$(unified_email_dir)/assets
     44 
     45 LOCAL_AAPT_FLAGS := --auto-add-overlay
     46 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
     47 
     48 LOCAL_STATIC_JAVA_LIBRARIES := android-common com.android.emailcommon guava libchips libphotoviewer
     49 LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
     50 LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-appcompat
     51 LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-gridlayout
     52 LOCAL_STATIC_JAVA_LIBRARIES += android-support-v13
     53 LOCAL_STATIC_JAVA_LIBRARIES += android-opt-bitmap
     54 LOCAL_STATIC_JAVA_LIBRARIES += android-opt-datetimepicker
     55 LOCAL_STATIC_JAVA_LIBRARIES += owasp-html-sanitizer
     56 
     57 LOCAL_PACKAGE_NAME := Email
     58 
     59 LOCAL_PROGUARD_FLAG_FILES := proguard.flags $(unified_email_dir)/proguard.flags
     60 ifeq (eng,$(TARGET_BUILD_VARIANT))
     61   LOCAL_PROGUARD_FLAG_FILES += proguard-test.flags
     62 endif
     63 
     64 LOCAL_SDK_VERSION := current
     65 
     66 include $(BUILD_PACKAGE)
     67 
     68 # only include rules to build other stuff for the original package, not the derived package.
     69 ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),)
     70 # additionally, build unit tests in a separate .apk
     71 include $(call all-makefiles-under,$(LOCAL_PATH))
     72 endif
     73