1package {
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
10cc_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
26    header_libs: [
27        "libmediametrics_headers",
28    ],
29
30    cflags: [
31        "-Wall",
32        "-Werror",
33        "-Wno-error=deprecated-declarations",
34        "-Wunused",
35        "-Wunreachable-code",
36    ],
37}
38