blob: a7c51afe4eb38eae44a575b40fdf72dd38ecf5c3 [file] [log] [blame]
Steven Moreland4d4047b2017-04-14 01:19:25 -07001// Copyright 2011 The Android Open Source Project
2
3//AUDIO_POLICY_TEST := true
4//ENABLE_AUDIO_DUMP := true
5
6cc_library_static {
7
8 srcs: [
9 "AudioHardwareInterface.cpp",
10 "audio_hw_hal.cpp",
11 ],
12
13 name: "libaudiohw_legacy",
14 static_libs: ["libmedia_helper"],
15 cflags: [
Chih-Hung Hsieh3ba72982017-10-03 13:28:32 -070016 "-Wall",
17 "-Werror",
Steven Moreland4d4047b2017-04-14 01:19:25 -070018 "-Wno-unused-parameter",
Chih-Hung Hsieh3ba72982017-10-03 13:28:32 -070019 "-Wno-unused-variable",
Steven Moreland4d4047b2017-04-14 01:19:25 -070020 "-Wno-gnu-designator",
21 ],
22
23 header_libs: [
24 "libbase_headers",
Steven Moreland4d4047b2017-04-14 01:19:25 -070025 "libhardware_legacy_headers",
26 ],
27 export_header_lib_headers: ["libhardware_legacy_headers"],
28}