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

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

Merge "audio.common@2.0-util: vendor_available + in Soong" into oc-dev

parents 411268f5 c2ed729e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ subdirs = [
    "2.0",
    "2.0/vts/functional",
    "common/2.0",
    "common/2.0/default",
    "effect/2.0",
    "effect/2.0/vts/functional",
]
+32 −0
Original line number Diff line number Diff line
//
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

cc_library_shared {
    name: "android.hardware.audio.common@2.0-util",
    vendor_available: true,
    srcs: [
        "EffectMap.cpp",
        "HidlUtils.cpp",
    ],

    export_include_dirs: ["."],

    shared_libs: [
        "libutils",
        "libhidlbase",
        "android.hardware.audio.common@2.0",
    ],

}
+0 −32
Original line number Diff line number Diff line
#
# Copyright (C) 2016 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := android.hardware.audio.common@2.0-util
LOCAL_SRC_FILES := \
    EffectMap.cpp \
    HidlUtils.cpp \

LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)

LOCAL_SHARED_LIBRARIES := \
    libutils \
    libhidlbase \
    android.hardware.audio.common@2.0 \

include $(BUILD_SHARED_LIBRARY)