* Restructure to remove dependencies elsewhere in the AOSP tree, move APEX definition from subdirectory, 'bpfmt -s -w Andoid.bp', etc. * Remove package license definitions that are not visible in this context.
34 lines
718 B
Plaintext
34 lines
718 B
Plaintext
// Copyright (C) 2015 The Android Open Source Project
|
|
// Copyright (C) 2025 KonstaKANG
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
cc_library {
|
|
name: "libalsautilsv2-rpi",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"alsa_device_profile.c",
|
|
"alsa_device_proxy.c",
|
|
"alsa_format.c",
|
|
"alsa_logging.c",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
header_libs: [
|
|
"libaudio_system_headers",
|
|
],
|
|
export_header_lib_headers: [
|
|
"libaudio_system_headers",
|
|
],
|
|
shared_libs: [
|
|
"libaudioutils",
|
|
"libcutils",
|
|
"liblog",
|
|
"libtinyalsav2",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wno-unused-parameter",
|
|
],
|
|
}
|