blob: bc2eb23677dc30e8862930685c1b4444b8211a38 [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: [
chaviw98318de2021-05-19 16:45:23 -050017 "Flags_test.cpp",
Dominik Laskowski75788452021-02-09 18:51:25 -080018 "cast_test.cpp",
Dominik Laskowskic74e9e22021-12-02 09:49:12 -080019 "concat_test.cpp",
Dominik Laskowski75788452021-02-09 18:51:25 -080020 "enum_test.cpp",
Dominik Laskowski4e2b71f2020-11-10 15:05:32 -080021 "future_test.cpp",
Dominik Laskowski5444fc82020-11-24 13:41:10 -080022 "small_map_test.cpp",
23 "small_vector_test.cpp",
24 "static_vector_test.cpp",
Dominik Laskowski4188ffd2021-02-07 22:15:44 -080025 "string_test.cpp",
Dominik Laskowski6fdf1142020-10-07 12:09:09 -070026 ],
27 cflags: [
28 "-Wall",
29 "-Werror",
30 "-Wextra",
31 "-Wpedantic",
32 ],
chaviw98318de2021-05-19 16:45:23 -050033
34 header_libs: [
35 "libbase_headers",
36 ],
37
38 shared_libs: [
39 "libbase",
40 ],
Dominik Laskowski6fdf1142020-10-07 12:09:09 -070041}