blob: 22267912b9da7157b61883b65509f3b008c83674 [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 Laskowski9f5e5db2021-05-25 12:52:24 -070017 "cast_test.cpp",
Dominik Laskowski4e2b71f2020-11-10 15:05:32 -080018 "future_test.cpp",
Dominik Laskowski5444fc82020-11-24 13:41:10 -080019 "small_map_test.cpp",
20 "small_vector_test.cpp",
21 "static_vector_test.cpp",
Dominik Laskowski6fdf1142020-10-07 12:09:09 -070022 ],
23 cflags: [
24 "-Wall",
25 "-Werror",
26 "-Wextra",
27 "-Wpedantic",
28 ],
29}