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

Commit 96c7b7f5 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Convert libmedialogservice to Android.bp"

parents ab6028f2 efbff675
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,5 +2,6 @@ subdirs = [
    "camera",
    "drm/*",
    "media/*",
    "services/*",
    "soundtrigger",
]
+22 −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",
        "libnblog",
        "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 libnblog 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)