blob: 3a2db9046bc5bf3431700424b172a55c0672d56c [file] [log] [blame]
Paul Westbrook82ea6da2011-12-15 11:03:51 -08001# Copyright 2011, 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
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080015LOCAL_PATH:= $(call my-dir)
16
17# Include res dir from chips
Scott Kennedy3ba5b502014-03-21 14:25:04 -070018chips_dir := ../../../frameworks/opt/chips/res
Andrew Sapperstein5c721d92012-06-22 16:19:27 -070019
Andrew Sapperstein52882ff2014-07-27 12:30:18 -070020#Include res dir from libraries
Ying Wanga25fa232015-05-19 16:18:58 -070021appcompat_dir := ../../../$(SUPPORT_LIBRARY_ROOT)/v7/appcompat/res
Andrew Sapperstein17dc98d2014-08-19 10:38:31 -070022photo_dir := ../../../frameworks/opt/photoviewer/res ../../../frameworks/opt/photoviewer/appcompat/res
Ying Wanga25fa232015-05-19 16:18:58 -070023gridlayout_dir := ../../../$(SUPPORT_LIBRARY_ROOT)/v7/gridlayout/res
James Lemieux2b806ed2014-07-11 14:24:42 -070024bitmap_dir := ../../../frameworks/opt/bitmap/res
Andrew Sapperstein51b6f562013-10-17 21:08:24 -070025datetimepicker_dir := ../../../frameworks/opt/datetimepicker/res
Andrew Sapperstein52882ff2014-07-27 12:30:18 -070026res_dirs := res $(appcompat_dir) $(chips_dir) $(photo_dir) $(gridlayout_dir) $(bitmap_dir) $(datetimepicker_dir)
Paul Westbrooke6c33062013-07-16 18:07:05 -070027
Alan Lau15490232014-03-06 14:53:14 -080028##################################################
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080029# Build APK
30include $(CLEAR_VARS)
31
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070032src_dirs := src unified_src
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080033LOCAL_PACKAGE_NAME := UnifiedEmail
34
Scott Kennedy3ba5b502014-03-21 14:25:04 -070035LOCAL_STATIC_JAVA_LIBRARIES := libchips
Andrew Sapperstein17dc98d2014-08-19 10:38:31 -070036LOCAL_STATIC_JAVA_LIBRARIES += libphotoviewer_appcompat
Mindy Pereira7b56a612011-12-14 12:32:28 -080037LOCAL_STATIC_JAVA_LIBRARIES += guava
Mindy Pereirac17d0732011-12-29 10:46:19 -080038LOCAL_STATIC_JAVA_LIBRARIES += android-common
Andy Huangfe9da722012-04-11 17:52:11 -070039LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
Andrew Sapperstein52882ff2014-07-27 12:30:18 -070040LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-appcompat
Andrew Sappersteinb06a3a52013-08-27 11:30:34 -070041LOCAL_STATIC_JAVA_LIBRARIES += android-support-v7-gridlayout
Andy Huangfe9da722012-04-11 17:52:11 -070042LOCAL_STATIC_JAVA_LIBRARIES += android-support-v13
James Lemieux2b806ed2014-07-11 14:24:42 -070043LOCAL_STATIC_JAVA_LIBRARIES += android-opt-bitmap
Andrew Sapperstein51b6f562013-10-17 21:08:24 -070044LOCAL_STATIC_JAVA_LIBRARIES += android-opt-datetimepicker
James Lemieux207a4372014-05-14 16:39:33 -070045LOCAL_STATIC_JAVA_LIBRARIES += owasp-html-sanitizer
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080046
mindyp47704452012-09-14 13:46:57 -070047LOCAL_SDK_VERSION := current
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080048
49LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) \
50 $(call all-logtags-files-under, $(src_dirs))
Andrew Sapperstein0f50f3d2013-05-21 13:18:56 -070051LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs))
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080052LOCAL_AAPT_FLAGS := --auto-add-overlay
Andrew Sapperstein52882ff2014-07-27 12:30:18 -070053LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips:com.android.ex.photo:android.support.v7.appcompat:android.support.v7.gridlayout:com.android.bitmap:com.android.datetimepicker
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080054
Paul Westbrook82ea6da2011-12-15 11:03:51 -080055LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Régis Décampsd26036f2014-10-14 15:38:16 +020056ifeq (eng,$(TARGET_BUILD_VARIANT))
57 LOCAL_PROGUARD_FLAG_FILES += proguard-test.flags
58endif
Paul Westbrook82ea6da2011-12-15 11:03:51 -080059
Jerry Xie1b13c232014-01-28 12:39:01 -080060LOCAL_EMMA_COVERAGE_FILTER := +com.android.mail.*, +com.android.emailcommon.*, +com.google.android.mail.*
Jerry Xiea9b818c2014-01-27 17:36:34 -080061
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080062include $(BUILD_PACKAGE)
Paul Westbrook82ea6da2011-12-15 11:03:51 -080063
Paul Westbrook82ea6da2011-12-15 11:03:51 -080064##################################################
65# Build all sub-directories
66
67include $(call all-makefiles-under,$(LOCAL_PATH))