blob: 021020cf0c5264eba684f911f4e4bb7855f937ad [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",
Saketh Sathuvallib99e1bc2018-02-21 17:10:34 +053016 "-DSUPPORT_MC",
Dan Willemsen154fce42018-11-16 23:15:45 -080017
18 "-Wall",
19 "-Werror",
20 ],
21
22 relative_install_path: "soundfx",
23
24 static_libs: ["libmusicbundle"],
25
26 shared_libs: [
27 "libaudioutils",
28 "libcutils",
29 "libdl",
30 "liblog",
31 ],
32
33 local_include_dirs: ["Bundle"],
34
35 header_libs: [
36 "libhardware_headers",
37 "libaudioeffects",
38 ],
39}
40
41// reverb wrapper
42cc_library_shared {
43 name: "libreverbwrapper",
44
45 arch: {
46 arm: {
47 instruction_set: "arm",
48 },
49 },
50
51 vendor: true,
52 srcs: ["Reverb/EffectReverb.cpp"],
53
Saketh Sathuvalli2b7eb6b2019-03-12 18:28:58 +053054 cppflags: [
Dan Willemsen154fce42018-11-16 23:15:45 -080055 "-fvisibility=hidden",
Saketh Sathuvalli71e87bf2020-08-09 11:58:16 +053056 "-DSUPPORT_MC",
Dan Willemsen154fce42018-11-16 23:15:45 -080057
58 "-Wall",
59 "-Werror",
60 ],
61
62 relative_install_path: "soundfx",
63
64 static_libs: ["libreverb"],
65
66 shared_libs: [
67 "libaudioutils",
68 "libcutils",
69 "libdl",
70 "liblog",
71 ],
72
73 local_include_dirs: ["Reverb"],
74
75 header_libs: [
76 "libhardware_headers",
77 "libaudioeffects",
78 ],
79
80 sanitize: {
81 integer_overflow: true,
82 },
83}