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

Commit c380f611 authored by Dan Willemsen's avatar Dan Willemsen Committed by android-build-merger
Browse files

Merge "Convert to Android.bp" am: a50b46b7 am: 8651f91f am: 806f548e

am: 37a76726

Change-Id: I35e44448c5e7ef813f050d2422286f540b39490b
parents d4500359 37a76726
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"]