Bob Badour | e539dba | 2021-02-12 17:07:05 -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_base_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["frameworks_base_license"], |
| 8 | } |
| 9 | |
Dan Willemsen | 4888b1f | 2018-05-09 20:30:33 -0700 | [diff] [blame] | 10 | cc_test { |
| 11 | name: "shared_mem_test", |
| 12 | gtest: false, |
| 13 | |
| 14 | srcs: ["shared_mem_test.cpp"], |
| 15 | |
| 16 | shared_libs: [ |
| 17 | "liblog", |
| 18 | "libcutils", |
| 19 | "libutils", |
| 20 | "libbinder", |
| 21 | "libhardware_legacy", |
| 22 | "libmedia", |
| 23 | "libaudioclient", |
| 24 | ], |
| 25 | |
Marco Nelissen | 25f8348 | 2020-01-10 16:31:30 -0800 | [diff] [blame] | 26 | header_libs: [ |
| 27 | "libmediametrics_headers", |
| 28 | ], |
| 29 | |
Dan Willemsen | 4888b1f | 2018-05-09 20:30:33 -0700 | [diff] [blame] | 30 | cflags: [ |
| 31 | "-Wall", |
| 32 | "-Werror", |
| 33 | "-Wno-error=deprecated-declarations", |
| 34 | "-Wunused", |
| 35 | "-Wunreachable-code", |
| 36 | ], |
| 37 | } |