huangcm
2025-07-03 a76b2fadf6ad4adf86e241e3753a63efe03ef80c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2011 The Android Open Source Project
 
//AUDIO_POLICY_TEST := true
//ENABLE_AUDIO_DUMP := true
 
cc_library_static {
 
    srcs: [
        "AudioHardwareInterface.cpp",
        "audio_hw_hal.cpp",
    ],
 
    name: "libaudiohw_legacy",
    static_libs: ["libmedia_helper"],
    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-unused-parameter",
        "-Wno-unused-variable",
        "-Wno-gnu-designator",
    ],
 
    header_libs: [
        "libbase_headers",
        "libhardware_legacy_headers",
    ],
    export_header_lib_headers: ["libhardware_legacy_headers"],
}