summaryrefslogtreecommitdiffstats
path: root/Android.mk
blob: 63def400577bb01bbc2e6572d2cf0d3f3a4e96eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, src)


LOCAL_PACKAGE_NAME := DownloadProvider
LOCAL_CERTIFICATE := media
LOCAL_STATIC_JAVA_LIBRARIES := guava

include $(BUILD_PACKAGE)

# build UI
include $(call all-makefiles-under,$(LOCAL_PATH)/ui)

# call tests makefiles
include $(call all-makefiles-under,$(LOCAL_PATH)/tests)