blob: 3aee209ec357130e152d6a80ffaccd134dac5e84 [file] [log] [blame]
Bob Badour948e6aa2021-02-12 21:02:31 -08001package {
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 Hungc89c8dc2019-10-16 17:48:21 -070010cc_test {
11 name: "mediametrics_tests",
Ray Essick7f6cde92019-11-17 11:19:44 -080012 test_suites: ["device-tests"],
Andy Hungc89c8dc2019-10-16 17:48:21 -070013
14 cflags: [
15 "-Wall",
16 "-Werror",
17 "-Wextra",
18 ],
19
20 include_dirs: [
Ray Essick40e8e5e2019-12-05 20:19:40 -080021 "frameworks/av/services/mediametrics",
Andy Hungc89c8dc2019-10-16 17:48:21 -070022 ],
23
24 shared_libs: [
25 "libbinder",
26 "liblog",
Andy Hungc89c8dc2019-10-16 17:48:21 -070027 "libmediametrics",
Ray Essick40e8e5e2019-12-05 20:19:40 -080028 "libmediametricsservice",
Andy Hunga85efab2019-12-23 11:41:29 -080029 "libmediautils",
Andy Hungc89c8dc2019-10-16 17:48:21 -070030 "libutils",
31 ],
32
Andy Hunga629bd12020-06-05 16:03:53 -070033 header_libs: [
34 "libaudioutils_headers",
35 ],
36
Andy Hungc89c8dc2019-10-16 17:48:21 -070037 srcs: [
38 "mediametrics_tests.cpp",
39 ],
40}