Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf14b8b9 authored by Steven Moreland's avatar Steven Moreland Committed by Jiyong Park
Browse files

libeffects: move to vendor

Bug: 33241851
Test: equalizer works in google play music
Test: CleanSpec works
Merged-Id: I11b54a5f050f914afc234e15f680581d15064c82
Change-Id: I11b54a5f050f914afc234e15f680581d15064c82
(cherry picked from commit c2e0f330)
parent 1b7dfe7d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -69,6 +69,8 @@ $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/soundfx/libvisualizer.so
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/soundfx/libreverbwrapper.so)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/soundfx/libbundlewrapper.so)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/soundfx/libaudiopreprocessing.so)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libeffects.so)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib64/libeffects.so)

# ************************************************
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
+7 −0
Original line number Diff line number Diff line
// Effect factory library
cc_library_shared {
    name: "libeffects",
    vendor: true,
    srcs: ["EffectsFactory.c"],

    shared_libs: [
@@ -10,4 +11,10 @@ cc_library_shared {
    ],

    include_dirs: ["system/media/audio_effects/include"],

    local_include_dirs:["include"],

    export_include_dirs: ["include"],
    header_libs: ["libhardware_headers"],
    export_header_lib_headers: ["libhardware_headers"],
}