blob: afc42203921636a94e546709f93758c7082ac5e6 [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",
Dan Willemsen154fce42018-11-16 23:15:45 -080056
57 "-Wall",
58 "-Werror",
59 ],
60
61 relative_install_path: "soundfx",
62
63 static_libs: ["libreverb"],
64
65 shared_libs: [
66 "libaudioutils",
67 "libcutils",
68 "libdl",
69 "liblog",
70 ],
71
72 local_include_dirs: ["Reverb"],
73
74 header_libs: [
75 "libhardware_headers",
76 "libaudioeffects",
77 ],
78
79 sanitize: {
80 integer_overflow: true,
81 },
82}