Bob Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 1 | package { |
Yihan Dong | 9081b85 | 2024-10-12 08:53:19 +0000 | [diff] [blame] | 2 | default_team: "trendy_team_native_tools_libraries", |
Bob Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 3 | default_applicable_licenses: ["system_core_libcutils_license"], |
| 4 | } |
| 5 | |
Bob Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 6 | license { |
| 7 | name: "system_core_libcutils_license", |
| 8 | visibility: [":__subpackages__"], |
| 9 | license_kinds: [ |
| 10 | "SPDX-license-identifier-Apache-2.0", |
| 11 | "SPDX-license-identifier-BSD", |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 12 | "SPDX-license-identifier-MIT", // strlcpy.c |
Bob Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 13 | ], |
| 14 | license_text: [ |
| 15 | "NOTICE", |
| 16 | ], |
| 17 | } |
| 18 | |
Tom Cherry | 167fbf5 | 2020-09-17 09:39:24 -0700 | [diff] [blame] | 19 | filegroup { |
| 20 | name: "android_filesystem_config_header", |
| 21 | srcs: ["include/private/android_filesystem_config.h"], |
| 22 | } |
| 23 | |
Neill Kapron | f1d00f0 | 2024-11-19 02:13:33 +0000 | [diff] [blame] | 24 | rust_bindgen { |
| 25 | name: "libandroid_ids", |
| 26 | crate_name: "android_ids", |
| 27 | source_stem: "bindings", |
| 28 | wrapper_src: "rust/aid_bindings.h", |
| 29 | header_libs: ["libcutils_headers"], |
| 30 | visibility: [ |
| 31 | "//system/bpf/loader", |
| 32 | ], |
| 33 | } |
| 34 | |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 35 | cc_defaults { |
| 36 | name: "libcutils_defaults", |
| 37 | cflags: [ |
| 38 | "-Wno-exit-time-destructors", |
| 39 | ], |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 40 | |
Justin Yun | feef4d3 | 2020-11-11 19:17:40 +0900 | [diff] [blame] | 41 | product_available: true, |
Tom Cherry | a5edc0f | 2020-09-17 09:38:42 -0700 | [diff] [blame] | 42 | ramdisk_available: true, |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 43 | recovery_available: true, |
| 44 | vendor_available: true, |
Yifan Hong | 55015ff | 2020-10-27 16:37:06 -0700 | [diff] [blame] | 45 | vendor_ramdisk_available: true, |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 46 | |
Vijay Venkatraman | 651f838 | 2017-01-25 18:52:17 +0000 | [diff] [blame] | 47 | host_supported: true, |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 48 | native_bridge_supported: true, |
| 49 | |
Jiyong Park | 8bf9b16 | 2020-03-07 16:36:09 +0900 | [diff] [blame] | 50 | apex_available: [ |
| 51 | "//apex_available:platform", |
| 52 | "//apex_available:anyapex", |
| 53 | ], |
Jooyung Han | 88f00f2 | 2020-04-16 18:48:33 +0900 | [diff] [blame] | 54 | min_sdk_version: "29", |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | cc_library_headers { |
| 58 | name: "libcutils_headers", |
| 59 | defaults: ["libcutils_defaults"], |
| 60 | |
Vijay Venkatraman | 651f838 | 2017-01-25 18:52:17 +0000 | [diff] [blame] | 61 | export_include_dirs: ["include"], |
T.J. Mercier | 1fd7993 | 2024-06-21 22:17:12 +0000 | [diff] [blame] | 62 | header_libs: ["libprocessgroup_headers"], |
| 63 | export_header_lib_headers: ["libprocessgroup_headers"], |
Vijay Venkatraman | 651f838 | 2017-01-25 18:52:17 +0000 | [diff] [blame] | 64 | target: { |
Steven Moreland | 385fe69 | 2017-04-13 14:29:58 -0700 | [diff] [blame] | 65 | vendor: { |
Justin Yun | feef4d3 | 2020-11-11 19:17:40 +0900 | [diff] [blame] | 66 | override_export_include_dirs: ["include_outside_system"], |
| 67 | }, |
| 68 | product: { |
| 69 | override_export_include_dirs: ["include_outside_system"], |
Steven Moreland | 385fe69 | 2017-04-13 14:29:58 -0700 | [diff] [blame] | 70 | }, |
Dan Willemsen | e0cd1e0 | 2017-03-15 15:23:36 -0700 | [diff] [blame] | 71 | linux_bionic: { |
| 72 | enabled: true, |
| 73 | }, |
| 74 | windows: { |
| 75 | enabled: true, |
| 76 | }, |
Vijay Venkatraman | 651f838 | 2017-01-25 18:52:17 +0000 | [diff] [blame] | 77 | }, |
| 78 | } |
| 79 | |
Josh Gao | a9b62d5 | 2020-02-19 13:50:57 -0800 | [diff] [blame] | 80 | // Socket specific parts of libcutils that are safe to statically link into an APEX. |
Josh Gao | 7f8a37c | 2020-03-09 15:20:55 -0700 | [diff] [blame] | 81 | cc_library { |
Josh Gao | a9b62d5 | 2020-02-19 13:50:57 -0800 | [diff] [blame] | 82 | name: "libcutils_sockets", |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 83 | defaults: ["libcutils_defaults"], |
Josh Gao | a9b62d5 | 2020-02-19 13:50:57 -0800 | [diff] [blame] | 84 | |
| 85 | export_include_dirs: ["include"], |
| 86 | |
Josh Gao | 7f8a37c | 2020-03-09 15:20:55 -0700 | [diff] [blame] | 87 | shared_libs: ["liblog"], |
Josh Gao | a9b62d5 | 2020-02-19 13:50:57 -0800 | [diff] [blame] | 88 | srcs: ["sockets.cpp"], |
| 89 | target: { |
| 90 | linux_bionic: { |
| 91 | enabled: true, |
| 92 | }, |
| 93 | |
| 94 | not_windows: { |
| 95 | srcs: [ |
| 96 | "socket_inaddr_any_server_unix.cpp", |
| 97 | "socket_local_client_unix.cpp", |
| 98 | "socket_local_server_unix.cpp", |
| 99 | "socket_network_client_unix.cpp", |
| 100 | "sockets_unix.cpp", |
| 101 | ], |
| 102 | }, |
| 103 | |
| 104 | // "not_windows" means "non-Windows host". |
| 105 | android: { |
| 106 | srcs: [ |
| 107 | "android_get_control_file.cpp", |
| 108 | "socket_inaddr_any_server_unix.cpp", |
| 109 | "socket_local_client_unix.cpp", |
| 110 | "socket_local_server_unix.cpp", |
| 111 | "socket_network_client_unix.cpp", |
| 112 | "sockets_unix.cpp", |
| 113 | ], |
| 114 | static_libs: ["libbase"], |
| 115 | }, |
| 116 | |
| 117 | windows: { |
| 118 | host_ldlibs: ["-lws2_32"], |
| 119 | srcs: [ |
| 120 | "socket_inaddr_any_server_windows.cpp", |
| 121 | "socket_network_client_windows.cpp", |
| 122 | "sockets_windows.cpp", |
| 123 | ], |
| 124 | |
| 125 | enabled: true, |
| 126 | cflags: [ |
| 127 | "-D_GNU_SOURCE", |
| 128 | ], |
| 129 | }, |
| 130 | }, |
| 131 | } |
| 132 | |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 133 | // some files must not be compiled when building against Mingw |
| 134 | // they correspond to features not used by our host development tools |
| 135 | // which are also hard or even impossible to port to native Win32 |
| 136 | libcutils_nonwindows_sources = [ |
| 137 | "fs.cpp", |
| 138 | "hashmap.cpp", |
| 139 | "multiuser.cpp", |
| 140 | "str_parms.cpp", |
| 141 | ] |
| 142 | |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 143 | cc_library { |
| 144 | name: "libcutils", |
Elliott Hughes | 527d71f | 2021-03-04 09:18:19 -0800 | [diff] [blame] | 145 | defaults: ["libcutils_defaults"], |
Kiyoung Kim | ad8cf52 | 2024-03-11 13:04:38 +0900 | [diff] [blame] | 146 | double_loadable: true, |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 147 | srcs: [ |
Elliott Hughes | 8e9aeb9 | 2017-11-10 10:22:07 -0800 | [diff] [blame] | 148 | "config_utils.cpp", |
Elliott Hughes | 8e9aeb9 | 2017-11-10 10:22:07 -0800 | [diff] [blame] | 149 | "iosched_policy.cpp", |
| 150 | "load_file.cpp", |
| 151 | "native_handle.cpp", |
S Vasudev Prasad | 100b08a | 2020-05-08 11:45:45 +0530 | [diff] [blame] | 152 | "properties.cpp", |
Elliott Hughes | 8e9aeb9 | 2017-11-10 10:22:07 -0800 | [diff] [blame] | 153 | "record_stream.cpp", |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 154 | "strlcpy.c", |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 155 | ], |
| 156 | |
| 157 | target: { |
Dan Willemsen | e0cd1e0 | 2017-03-15 15:23:36 -0700 | [diff] [blame] | 158 | linux_bionic: { |
| 159 | enabled: true, |
Brian Duddie | 9f2af69 | 2022-08-24 19:52:08 +0000 | [diff] [blame] | 160 | static_libs: [ |
| 161 | "libasync_safe", |
| 162 | ], |
Dan Willemsen | e0cd1e0 | 2017-03-15 15:23:36 -0700 | [diff] [blame] | 163 | }, |
Elliott Hughes | 94ccdc0 | 2023-09-22 18:44:28 +0000 | [diff] [blame] | 164 | linux: { |
| 165 | srcs: [ |
| 166 | "canned_fs_config.cpp", |
| 167 | "fs_config.cpp", |
| 168 | ], |
| 169 | }, |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 170 | host: { |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 171 | srcs: [ |
David Sehr | eb2dd20 | 2018-12-20 12:59:36 -0800 | [diff] [blame] | 172 | "trace-host.cpp", |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 173 | "ashmem-host.cpp", |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 174 | ], |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 175 | }, |
| 176 | not_windows: { |
| 177 | srcs: libcutils_nonwindows_sources, |
| 178 | }, |
| 179 | windows: { |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 180 | enabled: true, |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 181 | host_ldlibs: ["-lws2_32"], |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 182 | }, |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 183 | android: { |
Elliott Hughes | 06a839f | 2022-10-18 16:31:04 +0000 | [diff] [blame] | 184 | sanitize: { |
| 185 | misc_undefined: ["integer"], |
| 186 | }, |
Brian Duddie | 9f2af69 | 2022-08-24 19:52:08 +0000 | [diff] [blame] | 187 | static_libs: [ |
| 188 | "libasync_safe", |
| 189 | ], |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 190 | srcs: libcutils_nonwindows_sources + [ |
Elliott Hughes | 8e9aeb9 | 2017-11-10 10:22:07 -0800 | [diff] [blame] | 191 | "android_reboot.cpp", |
| 192 | "ashmem-dev.cpp", |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 193 | "klog.cpp", |
Elliott Hughes | 8e9aeb9 | 2017-11-10 10:22:07 -0800 | [diff] [blame] | 194 | "partition_utils.cpp", |
Chenbo Feng | baede73 | 2017-10-25 12:31:43 -0700 | [diff] [blame] | 195 | "qtaguid.cpp", |
Elliott Hughes | 8e9aeb9 | 2017-11-10 10:22:07 -0800 | [diff] [blame] | 196 | "trace-dev.cpp", |
Luis Hector Chavez | e97a4b9 | 2017-11-02 14:17:43 -0700 | [diff] [blame] | 197 | "uevent.cpp", |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 198 | ], |
Luis Hector Chavez | fae195b | 2017-11-03 16:22:05 -0700 | [diff] [blame] | 199 | }, |
| 200 | |
Justin Yun | feef4d3 | 2020-11-11 19:17:40 +0900 | [diff] [blame] | 201 | // qtaguid.cpp loads libnetd_client.so with dlopen(). Since |
| 202 | // the interface of libnetd_client.so may vary between AOSP |
| 203 | // releases, exclude qtaguid.cpp from the VNDK-SP variant. |
Logan Chien | 25b742c | 2018-05-08 17:37:29 +0800 | [diff] [blame] | 204 | vendor: { |
| 205 | exclude_srcs: [ |
Logan Chien | 25b742c | 2018-05-08 17:37:29 +0800 | [diff] [blame] | 206 | "qtaguid.cpp", |
| 207 | ], |
Kiyoung Kim | a4648c2 | 2023-06-23 11:12:38 +0900 | [diff] [blame] | 208 | header_abi_checker: { |
| 209 | enabled: true, |
| 210 | ref_dump_dirs: ["abi-dumps"], |
| 211 | }, |
Justin Yun | feef4d3 | 2020-11-11 19:17:40 +0900 | [diff] [blame] | 212 | }, |
| 213 | product: { |
| 214 | exclude_srcs: [ |
| 215 | "qtaguid.cpp", |
| 216 | ], |
Kiyoung Kim | a4648c2 | 2023-06-23 11:12:38 +0900 | [diff] [blame] | 217 | header_abi_checker: { |
| 218 | enabled: true, |
| 219 | ref_dump_dirs: ["abi-dumps"], |
| 220 | }, |
Justin Yun | feef4d3 | 2020-11-11 19:17:40 +0900 | [diff] [blame] | 221 | }, |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 222 | }, |
| 223 | |
Josh Gao | a9b62d5 | 2020-02-19 13:50:57 -0800 | [diff] [blame] | 224 | whole_static_libs: ["libcutils_sockets"], |
Joel Fernandes | 5194404 | 2018-12-18 13:32:31 -0800 | [diff] [blame] | 225 | shared_libs: [ |
| 226 | "liblog", |
| 227 | "libbase", |
| 228 | ], |
Steven Moreland | d73be1b | 2017-04-13 23:48:57 -0700 | [diff] [blame] | 229 | header_libs: [ |
Elliott Hughes | 9f49508 | 2018-04-25 14:52:50 -0700 | [diff] [blame] | 230 | "libbase_headers", |
Steven Moreland | d73be1b | 2017-04-13 23:48:57 -0700 | [diff] [blame] | 231 | "libcutils_headers", |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 232 | "libprocessgroup_headers", |
Steven Moreland | d73be1b | 2017-04-13 23:48:57 -0700 | [diff] [blame] | 233 | ], |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 234 | export_header_lib_headers: [ |
| 235 | "libcutils_headers", |
| 236 | "libprocessgroup_headers", |
| 237 | ], |
Yifan Hong | b680712 | 2017-07-25 15:24:04 -0700 | [diff] [blame] | 238 | local_include_dirs: ["include"], |
Vijay Venkatraman | 651f838 | 2017-01-25 18:52:17 +0000 | [diff] [blame] | 239 | |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 240 | cflags: [ |
| 241 | "-Werror", |
| 242 | "-Wall", |
| 243 | "-Wextra", |
| 244 | ], |
Dan Willemsen | eee8e7f | 2016-06-06 22:31:58 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 247 | cc_defaults { |
| 248 | name: "libcutils_test_default", |
Elliott Hughes | 7e42484 | 2019-11-12 20:20:42 -0800 | [diff] [blame] | 249 | srcs: [ |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 250 | "ashmem_base_test.cpp", |
Elliott Hughes | 7e42484 | 2019-11-12 20:20:42 -0800 | [diff] [blame] | 251 | "native_handle_test.cpp", |
S Vasudev Prasad | 100b08a | 2020-05-08 11:45:45 +0530 | [diff] [blame] | 252 | "properties_test.cpp", |
Elliott Hughes | 7e42484 | 2019-11-12 20:20:42 -0800 | [diff] [blame] | 253 | "sockets_test.cpp", |
| 254 | ], |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 255 | |
| 256 | target: { |
| 257 | android: { |
| 258 | srcs: [ |
| 259 | "android_get_control_file_test.cpp", |
| 260 | "android_get_control_socket_test.cpp", |
| 261 | "ashmem_test.cpp", |
| 262 | "fs_config_test.cpp", |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 263 | "multiuser_test.cpp", |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 264 | "sched_policy_test.cpp", |
| 265 | "str_parms_test.cpp", |
| 266 | "trace-dev_test.cpp", |
| 267 | ], |
| 268 | }, |
| 269 | |
| 270 | not_windows: { |
| 271 | srcs: [ |
| 272 | "str_parms_test.cpp", |
| 273 | ], |
| 274 | }, |
| 275 | }, |
| 276 | |
| 277 | cflags: [ |
| 278 | "-Wall", |
| 279 | "-Wextra", |
| 280 | "-Werror", |
| 281 | ], |
| 282 | } |
| 283 | |
Steven Moreland | 40b59a6 | 2023-06-06 17:52:39 +0000 | [diff] [blame] | 284 | always_static_test_libraries = [ |
| 285 | "libjsoncpp", |
| 286 | ] |
| 287 | |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 288 | test_libraries = [ |
| 289 | "libcutils", |
| 290 | "liblog", |
| 291 | "libbase", |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 292 | "libprocessgroup", |
| 293 | ] |
| 294 | |
| 295 | cc_test { |
| 296 | name: "libcutils_test", |
| 297 | test_suites: ["device-tests"], |
| 298 | defaults: ["libcutils_test_default"], |
| 299 | host_supported: true, |
| 300 | shared_libs: test_libraries, |
Steven Moreland | 40b59a6 | 2023-06-06 17:52:39 +0000 | [diff] [blame] | 301 | static_libs: always_static_test_libraries, |
Tom Cherry | e41aded | 2019-11-07 14:06:21 -0800 | [diff] [blame] | 302 | require_root: true, |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 303 | } |
| 304 | |
nelsonli | d83f390 | 2020-01-16 17:20:18 +0800 | [diff] [blame] | 305 | cc_defaults { |
| 306 | name: "libcutils_test_static_defaults", |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 307 | defaults: ["libcutils_test_default"], |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 308 | stl: "libc++_static", |
Tom Cherry | e41aded | 2019-11-07 14:06:21 -0800 | [diff] [blame] | 309 | require_root: true, |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 310 | |
| 311 | target: { |
| 312 | android: { |
| 313 | static_executable: true, |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 314 | static_libs: [ |
T.J. Mercier | a09ee8e | 2024-10-08 23:41:27 +0000 | [diff] [blame] | 315 | "libprocessgroup_util", |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 316 | ] + test_libraries + always_static_test_libraries, |
| 317 | }, |
| 318 | not_windows: { |
| 319 | static_libs: test_libraries + always_static_test_libraries, |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 320 | }, |
| 321 | windows: { |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 322 | static_libs: [ |
| 323 | "libbase", |
| 324 | "libcutils", |
| 325 | "libcutils_sockets", |
| 326 | ], |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 327 | host_ldlibs: ["-lws2_32"], |
Elliott Hughes | 01705e4 | 2019-02-07 12:41:37 -0800 | [diff] [blame] | 328 | enabled: true, |
| 329 | }, |
| 330 | }, |
| 331 | } |
nelsonli | d83f390 | 2020-01-16 17:20:18 +0800 | [diff] [blame] | 332 | |
| 333 | cc_test { |
| 334 | name: "libcutils_test_static", |
Michael Hoisie | 7c4beee | 2024-01-12 19:18:19 +0000 | [diff] [blame] | 335 | host_supported: true, |
nelsonli | d83f390 | 2020-01-16 17:20:18 +0800 | [diff] [blame] | 336 | test_suites: ["device-tests"], |
| 337 | defaults: ["libcutils_test_static_defaults"], |
| 338 | } |
| 339 | |
| 340 | cc_test { |
| 341 | name: "KernelLibcutilsTest", |
Michael Hoisie | d1e4c26 | 2024-03-06 17:22:45 +0000 | [diff] [blame] | 342 | test_suites: [ |
| 343 | "general-tests", |
| 344 | "vts", |
| 345 | ], |
nelsonli | d83f390 | 2020-01-16 17:20:18 +0800 | [diff] [blame] | 346 | defaults: ["libcutils_test_static_defaults"], |
| 347 | test_config: "KernelLibcutilsTest.xml", |
| 348 | } |