3ba7298e95
* Remove unused local variable or suppress the warning. Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: I4d7b4f2e9e7e6c60d8bfc209f47e6f1d33720165
28 lines
594 B
Text
28 lines
594 B
Text
// 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"],
|
|
}
|