50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
// Copyright (C) 2022 The Android Open Source Project
|
|
// Copyright (C) 2025 KonstaKANG
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
cc_library_shared {
|
|
name: "libbundleaidl_rpi",
|
|
relative_install_path: "soundfx",
|
|
vendor: true,
|
|
srcs: [
|
|
":effectCommonFileRpi",
|
|
"aidl/BundleContext.cpp",
|
|
"aidl/EffectBundleAidl.cpp",
|
|
],
|
|
local_include_dirs: ["aidl"],
|
|
static_libs: [
|
|
"libmusicbundle",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.audio.effect-V3-ndk",
|
|
"android.hardware.common-V2-ndk",
|
|
"android.hardware.common.fmq-V1-ndk",
|
|
"android.media.audio.common.types-V4-ndk",
|
|
"libaudio_aidl_conversion_common_ndk",
|
|
"libaudioaidlcommon",
|
|
"libaudioutils",
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"libcutils",
|
|
"libfmq",
|
|
"liblog",
|
|
"libstagefright_foundation",
|
|
"libutils",
|
|
],
|
|
header_libs: [
|
|
"libaudio_system_headers",
|
|
"libaudioaidl_rpi_headers",
|
|
"libaudioeffects",
|
|
"libhardware_headers",
|
|
"libsystem_headers",
|
|
],
|
|
cflags: [
|
|
"-DBACKEND_NDK",
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-Wthread-safety",
|
|
],
|
|
}
|