diff options
author | Pig <pig.priv@gmail.com> | 2020-09-19 09:24:07 +0800 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2022-02-11 00:48:04 +0200 |
commit | 932afc90b451d0a2b8aefe41ebdb978890341b15 (patch) | |
tree | 93f72df00a7ae98311ce32572ab348b54f979a7c | |
parent | b659db2c0a6eb9ae77d928f1a283534f1386c81a (diff) |
media: Drop LOCAL_COPY_HEADERS usage
LOCAL_COPY_HEADERS is deprecated, so remove all its usages
to avoid build warnings.
Change-Id: I8c9de08610e8d94da568b46b3e8c221007c850a0
-rw-r--r-- | libstagefrighthw/Android.mk | 10 | ||||
-rw-r--r-- | mm-core/Android.mk | 33 |
2 files changed, 0 insertions, 43 deletions
diff --git a/libstagefrighthw/Android.mk b/libstagefrighthw/Android.mk index 5c195392..d7a77f58 100644 --- a/libstagefrighthw/Android.mk +++ b/libstagefrighthw/Android.mk @@ -17,14 +17,6 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) -#=============================================================================== -# Deploy the headers that can be exposed -#=============================================================================== - -LOCAL_COPY_HEADERS_TO := mm-core/omxcore -LOCAL_COPY_HEADERS := QComOMXMetadata.h \ - QComOMXPlugin.h - LOCAL_SRC_FILES := \ QComOMXPlugin.cpp \ @@ -51,8 +43,6 @@ LOCAL_HEADER_LIBRARIES := \ libcutils_headers \ libutils_headers -LOCAL_C_INCLUDES:= $(TARGET_OUT_HEADERS)/mm-core/omxcore/ - LOCAL_SHARED_LIBRARIES := \ libutils \ libcutils \ diff --git a/mm-core/Android.mk b/mm-core/Android.mk index 31d41691..2b044a37 100644 --- a/mm-core/Android.mk +++ b/mm-core/Android.mk @@ -34,39 +34,6 @@ OMXCORE_CFLAGS += -D_ANDROID_O_MR1_DIVX_CHANGES endif #=============================================================================== -# Deploy the headers that can be exposed -#=============================================================================== - -LOCAL_COPY_HEADERS_TO := mm-core/omxcore -LOCAL_COPY_HEADERS := inc/OMX_Audio.h -LOCAL_COPY_HEADERS += inc/OMX_Component.h -LOCAL_COPY_HEADERS += inc/OMX_ContentPipe.h -LOCAL_COPY_HEADERS += inc/OMX_Core.h -LOCAL_COPY_HEADERS += inc/OMX_Image.h -LOCAL_COPY_HEADERS += inc/OMX_Index.h -LOCAL_COPY_HEADERS += inc/OMX_IVCommon.h -LOCAL_COPY_HEADERS += inc/OMX_Other.h -LOCAL_COPY_HEADERS += inc/OMX_QCOMExtns.h -LOCAL_COPY_HEADERS += inc/OMX_Types.h -LOCAL_COPY_HEADERS += inc/OMX_Video.h -LOCAL_COPY_HEADERS += inc/qc_omx_common.h -LOCAL_COPY_HEADERS += inc/qc_omx_component.h -LOCAL_COPY_HEADERS += inc/qc_omx_msg.h -LOCAL_COPY_HEADERS += inc/QOMX_AudioExtensions.h -LOCAL_COPY_HEADERS += inc/QOMX_AudioIndexExtensions.h -LOCAL_COPY_HEADERS += inc/OMX_CoreExt.h -LOCAL_COPY_HEADERS += inc/QOMX_CoreExtensions.h -LOCAL_COPY_HEADERS += inc/QOMX_FileFormatExtensions.h -LOCAL_COPY_HEADERS += inc/QOMX_IVCommonExtensions.h -LOCAL_COPY_HEADERS += inc/QOMX_SourceExtensions.h -LOCAL_COPY_HEADERS += inc/QOMX_VideoExtensions.h -LOCAL_COPY_HEADERS += inc/OMX_IndexExt.h -LOCAL_COPY_HEADERS += inc/OMX_VideoExt.h -LOCAL_COPY_HEADERS += inc/QOMX_StreamingExtensions.h -LOCAL_COPY_HEADERS += inc/QCMediaDefs.h -LOCAL_COPY_HEADERS += inc/QCMetaData.h - -#=============================================================================== # LIBRARY for Android apps #=============================================================================== |