AppFuse is now a public API. The CL removes the private version from MtpDocuemntsProvider package and switches to the public version. Bug: 32891253 Test: MtpDocumentsProviderTest Change-Id: Ibdf67309bc0678e2f70ac2dddb920125d9e0760e
18 lines
517 B
Makefile
18 lines
517 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 := MtpDocumentsProvider
|
|
LOCAL_CERTIFICATE := media
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
# Only enable asserts on userdebug/eng builds
|
|
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
|
LOCAL_JACK_FLAGS += -D jack.assert.policy=always
|
|
endif
|
|
|
|
include $(BUILD_PACKAGE)
|
|
include $(call all-makefiles-under, $(LOCAL_PATH))
|