• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    srcs: [
14        "algorithm_test.cpp",
15        "cast_test.cpp",
16        "concat_test.cpp",
17        "enum_test.cpp",
18        "fake_guard_test.cpp",
19        "flags_test.cpp",
20        "future_test.cpp",
21        "match_test.cpp",
22        "mixins_test.cpp",
23        "non_null_test.cpp",
24        "optional_test.cpp",
25        "shared_mutex_test.cpp",
26        "small_map_test.cpp",
27        "small_vector_test.cpp",
28        "static_vector_test.cpp",
29        "string_test.cpp",
30    ],
31    cflags: [
32        "-Wall",
33        "-Werror",
34        "-Wextra",
35        "-Wpedantic",
36        "-Wthread-safety",
37    ],
38}
39