Kevin Rocard | 42aa39a | 2017-06-09 19:22:43 -0700 | [diff] [blame] | 1 | // Effect configuration |
Bob Badour | 56786ac | 2021-02-25 15:24:36 -0800 | [diff] [blame] | 2 | package { |
| 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 Rocard | 469a788 | 2018-05-14 19:39:18 -0700 | [diff] [blame] | 11 | cc_library { |
Kevin Rocard | 42aa39a | 2017-06-09 19:22:43 -0700 | [diff] [blame] | 12 | name: "libeffectsconfig", |
Kevin Rocard | 07be14f | 2018-01-24 06:14:03 +0000 | [diff] [blame] | 13 | vendor_available: true, |
Kevin Rocard | 42aa39a | 2017-06-09 19:22:43 -0700 | [diff] [blame] | 14 | |
| 15 | srcs: ["src/EffectsConfig.cpp"], |
| 16 | |
Chih-Hung Hsieh | 2324f45 | 2017-11-30 15:30:04 -0800 | [diff] [blame] | 17 | cflags: [ |
| 18 | "-Wall", |
| 19 | "-Werror", |
| 20 | ], |
| 21 | |
Kevin Rocard | 42aa39a | 2017-06-09 19:22:43 -0700 | [diff] [blame] | 22 | shared_libs: [ |
| 23 | "liblog", |
| 24 | "libtinyxml2", |
François Gaffie | c1b0fe4 | 2020-01-07 09:12:36 +0100 | [diff] [blame] | 25 | "libutils", |
| 26 | "libmedia_helper", |
Mikhail Naganov | edc0ae1 | 2020-04-14 14:47:01 -0700 | [diff] [blame] | 27 | "libcutils", |
Kevin Rocard | 42aa39a | 2017-06-09 19:22:43 -0700 | [diff] [blame] | 28 | ], |
| 29 | |
Steven Moreland | 13e2fda | 2017-07-14 10:38:40 -0700 | [diff] [blame] | 30 | header_libs: ["libaudio_system_headers"], |
| 31 | export_header_lib_headers: ["libaudio_system_headers"], |
| 32 | |
Kevin Rocard | 42aa39a | 2017-06-09 19:22:43 -0700 | [diff] [blame] | 33 | export_include_dirs: ["include"], |
| 34 | } |