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_native_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_native_license"],
8}
9
10cc_test {
11    name: "ftl_test",
12    test_suites: ["device-tests"],
13    sanitize: {
14        address: true,
15    },
16    srcs: [
17        "Flags_test.cpp",
18        "future_test.cpp",
19        "NamedEnum_test.cpp",
20        "small_map_test.cpp",
21        "small_vector_test.cpp",
22        "static_vector_test.cpp",
23    ],
24    cflags: [
25        "-Wall",
26        "-Werror",
27        "-Wextra",
28        "-Wpedantic",
29    ],
30
31    header_libs: [
32        "libbase_headers",
33    ],
34
35    shared_libs: [
36        "libbase",
37    ],
38}
39