1// Effect configuration
2package {
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
11cc_library {
12    name: "libeffectsconfig",
13    vendor_available: true,
14
15    srcs: ["src/EffectsConfig.cpp"],
16
17    cflags: [
18        "-Wall",
19        "-Werror",
20    ],
21
22    shared_libs: [
23        "liblog",
24        "libtinyxml2",
25        "libutils",
26        "libmedia_helper",
27        "libcutils",
28    ],
29
30    header_libs: ["libaudio_system_headers"],
31    export_header_lib_headers: ["libaudio_system_headers"],
32
33    export_include_dirs: ["include"],
34}
35