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

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

Merge "Convert to Android.bp"

am: a50b46b7

Change-Id: I10a6b0c373f7bad17aed618fceaf68cd105f28f3
parents 41e71e5c a50b46b7
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"]