blob: 4226e32ee7ad28887850ea35e5f54f341a33bb65 [file] [log] [blame]
Bob Badour3306e492021-02-25 15:35:37 -08001package {
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
Dominik Laskowski6fdf1142020-10-07 12:09:09 -070010cc_test {
11 name: "ftl_test",
12 test_suites: ["device-tests"],
13 sanitize: {
14 address: true,
15 },
16 srcs: [
Dominik Laskowski4e2b71f2020-11-10 15:05:32 -080017 "future_test.cpp",
Dominik Laskowski5444fc82020-11-24 13:41:10 -080018 "small_map_test.cpp",
19 "small_vector_test.cpp",
20 "static_vector_test.cpp",
Dominik Laskowski4188ffd2021-02-07 22:15:44 -080021 "string_test.cpp",
Dominik Laskowski6fdf1142020-10-07 12:09:09 -070022 ],
23 cflags: [
24 "-Wall",
25 "-Werror",
26 "-Wextra",
27 "-Wpedantic",
28 ],
29}