blob: f08caec48195f41ced1ea42ae6d3631f341d07e2 [file] [log] [blame]
Dan Willemsen154fce42018-11-16 23:15:45 -08001// music bundle wrapper
2cc_library_shared {
3 name: "libbundlewrapper",
4
5 arch: {
6 arm: {
7 instruction_set: "arm",
8 },
9 },
10
11 vendor: true,
12 srcs: ["Bundle/EffectBundle.cpp"],
13
Saketh Sathuvalli2b7eb6b2019-03-12 18:28:58 +053014 cppflags: [
Dan Willemsen154fce42018-11-16 23:15:45 -080015 "-fvisibility=hidden",
Dan Willemsen154fce42018-11-16 23:15:45 -080016
17 "-Wall",
18 "-Werror",
19 ],
20
21 relative_install_path: "soundfx",
22
23 static_libs: ["libmusicbundle"],
24
25 shared_libs: [
26 "libaudioutils",
27 "libcutils",
28 "libdl",
29 "liblog",
30 ],
31
32 local_include_dirs: ["Bundle"],
33
34 header_libs: [
35 "libhardware_headers",
36 "libaudioeffects",
37 ],
38}
39
40// reverb wrapper
41cc_library_shared {
42 name: "libreverbwrapper",
43
44 arch: {
45 arm: {
46 instruction_set: "arm",
47 },
48 },
49
50 vendor: true,
51 srcs: ["Reverb/EffectReverb.cpp"],
52
Saketh Sathuvalli2b7eb6b2019-03-12 18:28:58 +053053 cppflags: [
Dan Willemsen154fce42018-11-16 23:15:45 -080054 "-fvisibility=hidden",
Dan Willemsen154fce42018-11-16 23:15:45 -080055
56 "-Wall",
57 "-Werror",
58 ],
59
60 relative_install_path: "soundfx",
61
62 static_libs: ["libreverb"],
63
64 shared_libs: [
65 "libaudioutils",
66 "libcutils",
67 "libdl",
68 "liblog",
69 ],
70
71 local_include_dirs: ["Reverb"],
72
73 header_libs: [
74 "libhardware_headers",
75 "libaudioeffects",
76 ],
77
78 sanitize: {
79 integer_overflow: true,
80 },
81}