Home | History | Annotate | Download | only in audio
      1 // Copyright 2011 The Android Open Source Project
      2 
      3 //AUDIO_POLICY_TEST := true
      4 //ENABLE_AUDIO_DUMP := true
      5 
      6 cc_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         "-Wno-unused-parameter",
     17         "-Wno-gnu-designator",
     18     ],
     19 
     20     header_libs: [
     21         "libbase_headers",
     22         "libhardware_legacy_headers",
     23     ],
     24     export_header_lib_headers: ["libhardware_legacy_headers"],
     25 }
     26