blob: d843f1e43b05a216e96ae628d53c0c21fbd8c262 [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
18chips_dir := ../../../frameworks/ex/chips/res
Andrew Sapperstein5c721d92012-06-22 16:19:27 -070019
20#Include res dir from photoviewer
21photo_dir := ../../../frameworks/ex/photoviewer/res
22res_dirs := $(chips_dir) $(photo_dir) res
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080023
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080024##################################################
25# Build APK
26include $(CLEAR_VARS)
27
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070028src_dirs := src unified_src
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080029LOCAL_PACKAGE_NAME := UnifiedEmail
30
Mindy Pereira7b56a612011-12-14 12:32:28 -080031LOCAL_STATIC_JAVA_LIBRARIES := android-common-chips
Andrew Sapperstein5c721d92012-06-22 16:19:27 -070032LOCAL_STATIC_JAVA_LIBRARIES += android-common-photoviewer
Mindy Pereira7b56a612011-12-14 12:32:28 -080033LOCAL_STATIC_JAVA_LIBRARIES += guava
Mindy Pereirac17d0732011-12-29 10:46:19 -080034LOCAL_STATIC_JAVA_LIBRARIES += android-common
Andy Huangfe9da722012-04-11 17:52:11 -070035LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
36LOCAL_STATIC_JAVA_LIBRARIES += android-support-v13
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080037
mindyp47704452012-09-14 13:46:57 -070038LOCAL_SDK_VERSION := current
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080039
40LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) \
41 $(call all-logtags-files-under, $(src_dirs))
42LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs)) $(LOCAL_PATH)/res
43LOCAL_AAPT_FLAGS := --auto-add-overlay
Andrew Sapperstein5c721d92012-06-22 16:19:27 -070044LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips:com.android.ex.photo
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080045
Paul Westbrook82ea6da2011-12-15 11:03:51 -080046LOCAL_PROGUARD_FLAG_FILES := proguard.flags
47
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080048include $(BUILD_PACKAGE)
Paul Westbrook82ea6da2011-12-15 11:03:51 -080049
50
51##################################################
52# Build all sub-directories
53
54include $(call all-makefiles-under,$(LOCAL_PATH))