blob: 7ecb9d8f9f8c86794097fcc6ae00ed7004e3549e [file] [log] [blame]
Kevin Rocard7588ff42018-01-08 11:11:30 -08001cc_library_shared {
2 name: "libaudiohal",
3
4 srcs: [
5 "DevicesFactoryHalInterface.cpp",
6 "EffectsFactoryHalInterface.cpp",
7 ],
8
9 cflags: [
10 "-Wall",
11 "-Werror",
12 ],
13
14 shared_libs: [
15 "android.hardware.audio@2.0",
16 "android.hardware.audio.effect@2.0",
17 "libaudiohal@2.0",
18 "libutils",
19 ],
20
21 header_libs: [
22 "libaudiohal_headers"
23 ]
24}
25
26cc_library_shared {
27 name: "libaudiohal_deathhandler",
28
29 srcs: [
30 "HalDeathHandlerHidl.cpp",
31 ],
32
33 cflags: [
34 "-Wall",
35 "-Werror",
36 ],
37
38 shared_libs: [
39 "libhidlbase",
40 "libutils",
41 "liblog",
42 ],
43
44 header_libs: [
45 "libaudiohal_headers"
46 ]
47}
48
Kevin Rocard51ac5422017-12-15 14:22:34 -080049cc_library_headers {
50 name: "libaudiohal_headers",
Dan Willemsenf33e4b82017-10-23 17:41:46 -070051
Dan Willemsenf33e4b82017-10-23 17:41:46 -070052 export_include_dirs: ["include"],
Dan Willemsenf33e4b82017-10-23 17:41:46 -070053}