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

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

Merge "Convert libmedialogservice to Android.bp"

am: c2a068aa

Change-Id: I6e753454338fae355a880bf4e078901719e9ddf7
parents 8581000b c2a068aa
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3,5 +3,6 @@ subdirs = [
    "drm/*",
    "media/*",
    "radio",
    "services/*",
    "soundtrigger",
]
+21 −0
Original line number Diff line number Diff line
cc_library_shared {
    name: "libmedialogservice",

    srcs: [
        "IMediaLogService.cpp",
        "MediaLogService.cpp",
    ],

    shared_libs: [
        "libaudioutils",
        "libbinder",
        "liblog",
        "libnbaio",
        "libutils",
    ],

    cflags: [
        "-Werror",
        "-Wall",
    ],
}

services/medialog/Android.mk

deleted100644 → 0
+0 −17
Original line number Diff line number Diff line
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_SRC_FILES := MediaLogService.cpp IMediaLogService.cpp

LOCAL_SHARED_LIBRARIES := libbinder libutils liblog libnbaio libaudioutils

LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB)

LOCAL_MODULE:= libmedialogservice

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

LOCAL_CFLAGS := -Werror -Wall

include $(BUILD_SHARED_LIBRARY)