1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4contacts_provider_files := ../ContactsProvider/src/com/android/providers/contacts/ContactsProvider.java 5 6LOCAL_SRC_FILES := $(call all-java-files-under,src) $(contacts_provider_files) 7 8LOCAL_JAVA_LIBRARIES := ext 9 10# We depend on googlelogin-client also, but that is already being included by google-framework 11LOCAL_STATIC_JAVA_LIBRARIES := google-framework 12 13LOCAL_PACKAGE_NAME := GoogleContactsProvider 14LOCAL_CERTIFICATE := shared 15 16LOCAL_OVERRIDES_PACKAGES := ContactsProvider 17 18include $(BUILD_PACKAGE) 19 20include $(call all-makefiles-under,$(LOCAL_PATH)) 21