blob: 21ba4bb4364cf7386f680079b39010a2af550749 [file] [log] [blame]
Chiao Cheng5a6b5192012-09-05 16:10:50 -07001# Copyright 2012, 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
15LOCAL_PATH := $(call my-dir)
Chiao Chengc36c3192012-10-16 13:21:10 -070016include $(CLEAR_VARS)
Chiao Cheng5a6b5192012-09-05 16:10:50 -070017
Chiao Chengc36c3192012-10-16 13:21:10 -070018LOCAL_MODULE_TAGS := optional
19
20LOCAL_SRC_FILES := $(call all-java-files-under, src)
21LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, res)
22
23LOCAL_STATIC_JAVA_LIBRARIES := \
24 com.android.phone.shared \
Chiao Cheng7903d242012-12-03 17:15:58 -080025 com.android.vcard \
Chiao Chengc36c3192012-10-16 13:21:10 -070026 guava \
Chiao Chengd6bba122012-11-01 13:41:51 -070027 android-common \
Chiao Chengc36c3192012-10-16 13:21:10 -070028 android-support-v13 \
29 android-support-v4 \
30
31LOCAL_PACKAGE_NAME := com.android.contacts.common
32
Chiao Chengb3ed20e2012-10-24 12:26:57 -070033LOCAL_PROGUARD_ENABLED := disabled
Chiao Chengc36c3192012-10-16 13:21:10 -070034LOCAL_PROGUARD_FLAG_FILES := proguard.flags
35
36include $(BUILD_PACKAGE)
37
38# Use the folloing include to make our test apk.
Chiao Cheng47201042012-10-23 19:07:05 -070039include $(call all-makefiles-under,$(LOCAL_PATH))