mirror of
https://github.com/oplus-giulia-dev/android_hardware_oplus
synced 2025-11-04 05:45:34 +08:00
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
//
|
|
// SPDX-FileCopyrightText: 2020-2025 The LineageOS Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_shared {
|
|
name: "audio_amplifier.qcom",
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
owner: "qti",
|
|
|
|
srcs: [
|
|
"audio_amplifier.c",
|
|
],
|
|
|
|
include_dirs: [
|
|
"external/tinyalsa/include",
|
|
"external/tinycompress/include",
|
|
"system/media/audio_route/include",
|
|
"system/media/audio_utils/include",
|
|
] + select(soong_config_variable("ANDROID", "target_board_platform"), {
|
|
"kona": [
|
|
"hardware/qcom-caf/sm8250/audio/hal",
|
|
"hardware/qcom-caf/sm8250/audio/hal/audio_extn",
|
|
"hardware/qcom-caf/sm8250/audio/hal/msm8974",
|
|
],
|
|
"holi": [
|
|
"hardware/qcom-caf/sm8350/audio/hal",
|
|
"hardware/qcom-caf/sm8350/audio/hal/audio_extn",
|
|
"hardware/qcom-caf/sm8350/audio/hal/msm8974",
|
|
],
|
|
"lahaina": [
|
|
"hardware/qcom-caf/sm8350/audio/hal",
|
|
"hardware/qcom-caf/sm8350/audio/hal/audio_extn",
|
|
"hardware/qcom-caf/sm8350/audio/hal/msm8974",
|
|
],
|
|
default: [],
|
|
}),
|
|
|
|
header_libs: [
|
|
"libhardware_headers",
|
|
"qti_kernel_headers",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libcutils",
|
|
"libdl",
|
|
"libhardware",
|
|
"liblog",
|
|
"libtinyalsa",
|
|
],
|
|
}
|