The AES test was useful to verify the framework API changes, but the decrypt test was not correct. Removing it for now. Merge of go/wvgerrit/17472 bug: 27973491 Change-Id: I942fda22072636ea7ce56b992e7d3a60077c0d27
21 lines
475 B
Makefile
21 lines
475 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
|
|
|
|
LOCAL_DEX_PREOPT := false
|
|
|
|
# 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))
|