The policy value 'enable' does not exist anymore and was replaced by 'always' (cherry-picked from 2a6b5c63c04b819950cec466c8bb6da61270af22) Change-Id: I233a555821a84d917e3b3ec923b5baffc18bd2d2
19 lines
562 B
Makefile
19 lines
562 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_JNI_SHARED_LIBRARIES := libappfuse_jni
|
|
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))
|