mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
This reverts commit 49c56de516.
Reason for revert: Breaks the build of multiple devices
Change-Id: Iebd868467948b8afa5907462ccc0720cd9c4871e
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
cc_library_shared {
|
|
name: "android.hardware.audio@2.0-impl",
|
|
relative_install_path: "hw",
|
|
proprietary: true,
|
|
vendor: true,
|
|
srcs: [
|
|
"Conversions.cpp",
|
|
"Device.cpp",
|
|
"DevicesFactory.cpp",
|
|
"ParametersUtil.cpp",
|
|
"PrimaryDevice.cpp",
|
|
"Stream.cpp",
|
|
"StreamIn.cpp",
|
|
"StreamOut.cpp",
|
|
],
|
|
|
|
defaults: ["hidl_defaults"],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libfmq",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.audio@2.0",
|
|
"android.hardware.audio.common@2.0",
|
|
"android.hardware.audio.common@2.0-util",
|
|
"android.hardware.audio.common-util",
|
|
],
|
|
|
|
header_libs: [
|
|
"android.hardware.audio.common.util@all-versions",
|
|
"android.hardware.audio.core@all-versions-impl",
|
|
"libaudioclient_headers",
|
|
"libaudio_system_headers",
|
|
"libhardware_headers",
|
|
"libmedia_headers",
|
|
],
|
|
|
|
whole_static_libs: [
|
|
"libmedia_helper",
|
|
],
|
|
|
|
}
|