1// 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: [ 16 "-Wall", 17 "-Werror", 18 "-Wno-unused-parameter", 19 "-Wno-unused-variable", 20 "-Wno-gnu-designator", 21 ], 22 23 header_libs: [ 24 "libaudioclient_headers", 25 "libbase_headers", 26 "libhardware_legacy_headers", 27 ], 28 export_header_lib_headers: ["libhardware_legacy_headers"], 29} 30