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_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
10filegroup {
11    name: "libeffects-test-helper-srcs",
12    srcs: [
13        "EffectTestHelper.cpp",
14    ],
15}
16
17cc_library_headers {
18    name: "libeffects-test-helper-headers",
19    vendor: true,
20    host_supported: true,
21    export_include_dirs: [
22        ".",
23    ],
24}
25
26cc_defaults {
27    name: "libeffects-test-defaults",
28    vendor: true,
29    gtest: true,
30    host_supported: true,
31    test_suites: ["device-tests"],
32    static_libs: [
33        "libaudioutils",
34    ],
35    srcs: [
36        ":libeffects-test-helper-srcs",
37    ],
38    header_libs: [
39        "libeffects-test-helper-headers",
40        "libhardware_headers",
41    ],
42    shared_libs: [
43        "liblog",
44    ],
45}
46