diff options
author | Mahesh Lanka <mlanka@codeaurora.org> | 2017-05-02 13:53:29 +0530 |
---|---|---|
committer | Mahesh Lanka <mlanka@codeaurora.org> | 2017-05-02 13:54:28 +0530 |
commit | 57cb502bd8b7b49095b85011f78aca8bacfabb65 (patch) | |
tree | 9389274b4c9e7a937ab1232938425453f200e904 /sdm660_64.mk | |
parent | 2ae50fe9fdc5e03ae41297ad1a785425bb39cfeb (diff) |
SDM660_64: Install media config files in vendor/etc
Also install in system/etc and system/vendor/etc till the
migration to /vendor is complete
Change-Id: I9a548bc09900e0eee96d644faf851e2bb27fcbf2
Diffstat (limited to 'sdm660_64.mk')
-rw-r--r--[-rwxr-xr-x] | sdm660_64.mk | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/sdm660_64.mk b/sdm660_64.mk index ddca3a7..54084e5 100755..100644 --- a/sdm660_64.mk +++ b/sdm660_64.mk @@ -40,10 +40,21 @@ TARGET_USE_UI_SVA := true -include $(QCPATH)/common/config/qtic-config.mk # Video codec configuration files +MEDIA_XML_TARGET := system/vendor/etc +MEDIA_XML_TARGET_VENDOR := vendor/etc +MEDIA_XML_TARGET_SYSTEM := etc ifeq ($(TARGET_ENABLE_QC_AV_ENHANCEMENTS), true) -PRODUCT_COPY_FILES += device/qcom/sdm660_64/media_profiles.xml:system/etc/media_profiles.xml \ - device/qcom/sdm660_64/media_codecs.xml:system/etc/media_codecs.xml \ - device/qcom/sdm660_64/media_codecs_performance.xml:system/etc/media_codecs_performance.xml +PRODUCT_COPY_FILES += device/qcom/sdm660_64/media_profiles.xml:$(MEDIA_XML_TARGET)/media_profiles.xml \ + device/qcom/sdm660_64/media_profiles.xml:$(MEDIA_XML_TARGET_VENDOR)/media_profiles.xml \ + device/qcom/sdm660_64/media_profiles.xml:$(MEDIA_XML_TARGET_SYSTEM)/media_profiles.xml + +PRODUCT_COPY_FILES += device/qcom/sdm660_64/media_codecs.xml:$(MEDIA_XML_TARGET)/media_codecs.xml \ + device/qcom/sdm660_64/media_codecs.xml:$(MEDIA_XML_TARGET_VENDOR)/media_codecs.xml \ + device/qcom/sdm660_64/media_codecs.xml:$(MEDIA_XML_TARGET_SYSTEM)/media_codecs.xml + +PRODUCT_COPY_FILES += device/qcom/sdm660_64/media_codecs_performance.xml:$(MEDIA_XML_TARGET)/media_codecs_performance.xml \ + device/qcom/sdm660_64/media_codecs_performance.xml:$(MEDIA_XML_TARGET_VENDOR)/media_codecs_performance.xml \ + device/qcom/sdm660_64/media_codecs_performance.xml:$(MEDIA_XML_TARGET_SYSTEM)/media_codecs_performance.xml endif #TARGET_ENABLE_QC_AV_ENHANCEMENTS PRODUCT_COPY_FILES += device/qcom/sdm660_64/whitelistedapps.xml:system/vendor/etc/whitelistedapps.xml \ |