blob: 97626bec7d90c8c9b6c7250a0146b462f4f66574 [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 Laskowski6fdf1142020-10-07 12:09:09 -070021 ],
22 cflags: [
23 "-Wall",
24 "-Werror",
25 "-Wextra",
26 "-Wpedantic",
27 ],
28}