This is required because these makefiles contain a module that's building agains the "current" SDK and will need to add an explicit compile time dependency on the apache API. Note that no runtime dependency is needed because the app targets SDK version 12 (?!!). bug: 18027885 Change-Id: I37587b91f9c52f88a8becce0449ac9b24a77fdad
19 lines
448 B
Makefile
19 lines
448 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := MediaDrmAPITest
|
|
|
|
LOCAL_JAVA_LIBRARIES := org.apache.http.legacy
|
|
|
|
# TODO: This test app depends on framework implementation details.
|
|
# LOCAL_SDK_VERSION := current
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
# Use the following include to make our test apk.
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|