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

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

Merge "Convert libmedialogservice to Android.bp" into oc-mr1-dev-plus-aosp

parents 39932532 e53db386
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,5 +2,6 @@ subdirs = [
    "camera",
    "drm/*",
    "media/*",
    "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)