blob: 0645794d2726e1da8cdd34e9a3a74e3321f304ec [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
Mindy Pereira43d62dc2011-12-13 10:41:19 -080019res_dirs := $(chips_dir) res
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080020
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080021##################################################
22# Build APK
23include $(CLEAR_VARS)
24
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070025src_dirs := src unified_src
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080026LOCAL_PACKAGE_NAME := UnifiedEmail
27
Mindy Pereira7b56a612011-12-14 12:32:28 -080028LOCAL_STATIC_JAVA_LIBRARIES := android-common-chips
29LOCAL_STATIC_JAVA_LIBRARIES += guava
Mindy Pereirac17d0732011-12-29 10:46:19 -080030LOCAL_STATIC_JAVA_LIBRARIES += android-common
Marc Blank9e5a3fd2012-01-11 15:57:08 -080031LOCAL_STATIC_JAVA_LIBRARIES += com.android.emailcommon
Andy Huangfe9da722012-04-11 17:52:11 -070032LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
33LOCAL_STATIC_JAVA_LIBRARIES += android-support-v13
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080034
Mindy Pereira36bbcae2012-04-25 09:27:04 -070035LOCAL_SDK_VERSION := 14
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080036
37LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) \
38 $(call all-logtags-files-under, $(src_dirs))
39LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs)) $(LOCAL_PATH)/res
40LOCAL_AAPT_FLAGS := --auto-add-overlay
Mindy Pereira96aff302011-12-16 13:07:49 -080041LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080042
Paul Westbrook82ea6da2011-12-15 11:03:51 -080043LOCAL_PROGUARD_FLAG_FILES := proguard.flags
44
Mindy Pereira0b2aaf42011-12-12 10:02:12 -080045include $(BUILD_PACKAGE)
Paul Westbrook82ea6da2011-12-15 11:03:51 -080046
47
48##################################################
49# Build all sub-directories
50
51include $(call all-makefiles-under,$(LOCAL_PATH))