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

Commit a50b46b7 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Convert to Android.bp"

parents da1ce7f9 af26292e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -14,6 +14,5 @@ ndk_headers {

subdirs = [
    "camera/ndk",
    "media/libmedia",
    "media/libstagefright/foundation",
    "media/*",
]
+1 −0
Original line number Diff line number Diff line
subdirs = ["factory"]
+13 −0
Original line number Diff line number Diff line
// Effect factory library
cc_library_shared {
    name: "libeffects",
    srcs: ["EffectsFactory.c"],

    shared_libs: [
        "libcutils",
        "liblog",
        "libdl",
    ],

    include_dirs: ["system/media/audio_effects/include"],
}
+0 −19
Original line number Diff line number Diff line
LOCAL_PATH:= $(call my-dir)

# Effect factory library
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	EffectsFactory.c

LOCAL_SHARED_LIBRARIES := \
	libcutils liblog

LOCAL_MODULE:= libeffects

LOCAL_SHARED_LIBRARIES += libdl

LOCAL_C_INCLUDES := \
    $(call include-path-for, audio-effects)

include $(BUILD_SHARED_LIBRARY)
+1 −0
Original line number Diff line number Diff line
subdirs = ["foundation"]