Home | History | Annotate | Download | only in default
      1 cc_library_shared {
      2     name: "android.hardware.audio (a] 2.0-impl",
      3     relative_install_path: "hw",
      4     proprietary: true,
      5     vendor: true,
      6     srcs: [
      7         "Conversions.cpp",
      8         "Device.cpp",
      9         "DevicesFactory.cpp",
     10         "ParametersUtil.cpp",
     11         "PrimaryDevice.cpp",
     12         "Stream.cpp",
     13         "StreamIn.cpp",
     14         "StreamOut.cpp",
     15     ],
     16 
     17     cflags: [
     18         "-DAUDIO_HAL_VERSION_2_0",
     19     ],
     20 
     21     defaults: ["hidl_defaults"],
     22 
     23     export_include_dirs: ["include"],
     24 
     25     shared_libs: [
     26         "libbase",
     27         "libcutils",
     28         "libfmq",
     29         "libhardware",
     30         "libhidlbase",
     31         "libhidltransport",
     32         "liblog",
     33         "libutils",
     34         "android.hardware.audio (a] 2.0",
     35         "android.hardware.audio.common (a] 2.0",
     36         "android.hardware.audio.common (a] 2.0-util",
     37         "android.hardware.audio.common-util",
     38     ],
     39 
     40     header_libs: [
     41         "android.hardware.audio.common.util@all-versions",
     42         "android.hardware.audio.core@all-versions-impl",
     43         "libaudioclient_headers",
     44         "libaudio_system_headers",
     45         "libhardware_headers",
     46         "libmedia_headers",
     47     ],
     48 
     49     whole_static_libs: [
     50         "libmedia_helper",
     51     ],
     52 
     53 }
     54