android_external_alsa-lib/Android.bp
Konsta 15c7354c4e Merge tag 'v1.2.16.1' of https://github.com/alsa-project/alsa-lib into android-16.0
Release v1.2.16.1

Core
 - Release v1.2.16.1
Use Case Manager API
 - ucm: move optional file trace into uc_mgr_config_load_into
 - ucm: pass optional flag to config load functions to suppress spurious errors
Configuration
 - conf: add missing return value check in parse_def()

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
2026-06-18 13:45:41 +03:00

33 lines
716 B
Text

//
// Copyright (C) 2025 KonstaKANG
//
// SPDX-License-Identifier: LGPL-2.1
//
cc_library_shared {
name: "libasound",
vendor: true,
export_include_dirs: [
"include",
],
srcs: [
"src/**/*.c",
],
exclude_srcs: [
"src/control/ctl_symbols_list.c",
"src/pcm/pcm_dmix_generic.c",
"src/pcm/pcm_dmix_i386.c",
"src/pcm/pcm_dmix_x86_64.c",
"src/pcm/pcm_symbols_list.c",
"src/pcm/scopes/*.c",
],
cflags: [
"-DPIC",
"-O2",
"-Wno-pointer-arith",
"-Wno-pointer-bool-conversion",
"-Wno-single-bit-bitfield-constant-conversion",
"-fPIC",
],
required: ["libasound-config"],
}