Bob Badour | 948e6aa | 2021-02-12 21:02:31 -0800 | [diff] [blame] | 1 | package { |
| 2 | // See: http://go/android-license-faq |
| 3 | // A large-scale-change added 'default_applicable_licenses' to import |
| 4 | // all of the 'license_kinds' from "frameworks_av_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["frameworks_av_license"], |
| 8 | } |
| 9 | |
Andy Hung | c89c8dc | 2019-10-16 17:48:21 -0700 | [diff] [blame] | 10 | cc_test { |
| 11 | name: "mediametrics_tests", |
Ray Essick | 7f6cde9 | 2019-11-17 11:19:44 -0800 | [diff] [blame] | 12 | test_suites: ["device-tests"], |
Andy Hung | c89c8dc | 2019-10-16 17:48:21 -0700 | [diff] [blame] | 13 | |
| 14 | cflags: [ |
| 15 | "-Wall", |
| 16 | "-Werror", |
| 17 | "-Wextra", |
| 18 | ], |
| 19 | |
| 20 | include_dirs: [ |
Ray Essick | 40e8e5e | 2019-12-05 20:19:40 -0800 | [diff] [blame] | 21 | "frameworks/av/services/mediametrics", |
Andy Hung | c89c8dc | 2019-10-16 17:48:21 -0700 | [diff] [blame] | 22 | ], |
| 23 | |
| 24 | shared_libs: [ |
| 25 | "libbinder", |
| 26 | "liblog", |
Andy Hung | c89c8dc | 2019-10-16 17:48:21 -0700 | [diff] [blame] | 27 | "libmediametrics", |
Ray Essick | 40e8e5e | 2019-12-05 20:19:40 -0800 | [diff] [blame] | 28 | "libmediametricsservice", |
Andy Hung | a85efab | 2019-12-23 11:41:29 -0800 | [diff] [blame] | 29 | "libmediautils", |
Andy Hung | c89c8dc | 2019-10-16 17:48:21 -0700 | [diff] [blame] | 30 | "libutils", |
| 31 | ], |
| 32 | |
Andy Hung | a629bd1 | 2020-06-05 16:03:53 -0700 | [diff] [blame] | 33 | header_libs: [ |
| 34 | "libaudioutils_headers", |
| 35 | ], |
| 36 | |
Andy Hung | c89c8dc | 2019-10-16 17:48:21 -0700 | [diff] [blame] | 37 | srcs: [ |
| 38 | "mediametrics_tests.cpp", |
| 39 | ], |
| 40 | } |