blob: b02dcb6ca6a8b886a04efbb9e1bd0d337b853036 [file] [log] [blame]
Kevin Rocard42aa39a2017-06-09 19:22:43 -07001// Effect configuration
Bob Badour56786ac2021-02-25 15:24:36 -08002package {
3 // See: http://go/android-license-faq
4 // A large-scale-change added 'default_applicable_licenses' to import
5 // all of the 'license_kinds' from "frameworks_av_license"
6 // to get the below license kinds:
7 // SPDX-license-identifier-Apache-2.0
8 default_applicable_licenses: ["frameworks_av_license"],
9}
10
Kevin Rocard469a7882018-05-14 19:39:18 -070011cc_library {
Kevin Rocard42aa39a2017-06-09 19:22:43 -070012 name: "libeffectsconfig",
Kevin Rocard07be14f2018-01-24 06:14:03 +000013 vendor_available: true,
Kevin Rocard42aa39a2017-06-09 19:22:43 -070014
15 srcs: ["src/EffectsConfig.cpp"],
16
Chih-Hung Hsieh2324f452017-11-30 15:30:04 -080017 cflags: [
18 "-Wall",
19 "-Werror",
20 ],
21
Kevin Rocard42aa39a2017-06-09 19:22:43 -070022 shared_libs: [
23 "liblog",
24 "libtinyxml2",
François Gaffiec1b0fe42020-01-07 09:12:36 +010025 "libutils",
26 "libmedia_helper",
Mikhail Naganovedc0ae12020-04-14 14:47:01 -070027 "libcutils",
Kevin Rocard42aa39a2017-06-09 19:22:43 -070028 ],
29
Steven Moreland13e2fda2017-07-14 10:38:40 -070030 header_libs: ["libaudio_system_headers"],
31 export_header_lib_headers: ["libaudio_system_headers"],
32
Kevin Rocard42aa39a2017-06-09 19:22:43 -070033 export_include_dirs: ["include"],
34}