Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 1 | cc_defaults { |
| 2 | name: "keystore_defaults", |
| 3 | |
| 4 | cflags: [ |
| 5 | "-Wall", |
| 6 | "-Werror", |
| 7 | "-Wextra", |
| 8 | "-Wunused", |
| 9 | ], |
| 10 | |
| 11 | sanitize: { |
bohu | cccab48 | 2019-01-31 20:30:29 -0800 | [diff] [blame] | 12 | misc_undefined: [ |
| 13 | "signed-integer-overflow", |
| 14 | "unsigned-integer-overflow", |
| 15 | "shift", |
| 16 | "integer-divide-by-zero", |
| 17 | "implicit-unsigned-integer-truncation", |
| 18 | // BUG: 123630767 |
| 19 | //"implicit-signed-integer-truncation", |
| 20 | "implicit-integer-sign-change", |
| 21 | ], |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 22 | }, |
| 23 | |
| 24 | clang: true, |
| 25 | } |
| 26 | |
| 27 | cc_binary { |
| 28 | name: "keystore", |
| 29 | defaults: ["keystore_defaults"], |
| 30 | |
| 31 | srcs: [ |
Shawn Willden | fa5702f | 2017-12-03 15:14:58 -0700 | [diff] [blame] | 32 | "KeyStore.cpp", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 33 | "auth_token_table.cpp", |
| 34 | "blob.cpp", |
David Zeuthen | c6eb7cd | 2017-11-27 11:33:55 -0500 | [diff] [blame] | 35 | "confirmation_manager.cpp", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 36 | "grant_store.cpp", |
Max Bires | 33aac2d | 2018-02-23 10:53:10 -0800 | [diff] [blame] | 37 | "key_config.proto", |
| 38 | "key_proto_handler.cpp", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 39 | "key_store_service.cpp", |
| 40 | "keyblob_utils.cpp", |
| 41 | "keymaster_enforcement.cpp", |
Janis Danisevskis | ff3d7f4 | 2018-10-08 07:15:09 -0700 | [diff] [blame] | 42 | "keymaster_worker.cpp", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 43 | "keystore_main.cpp", |
| 44 | "keystore_utils.cpp", |
| 45 | "legacy_keymaster_device_wrapper.cpp", |
| 46 | "operation.cpp", |
Max Bires | 33aac2d | 2018-02-23 10:53:10 -0800 | [diff] [blame] | 47 | "operation_config.proto", |
| 48 | "operation_proto_handler.cpp", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 49 | "permissions.cpp", |
| 50 | "user_state.cpp", |
| 51 | ], |
| 52 | shared_libs: [ |
David Zeuthen | c6eb7cd | 2017-11-27 11:33:55 -0500 | [diff] [blame] | 53 | "android.hardware.confirmationui@1.0", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 54 | "android.hardware.keymaster@3.0", |
Shawn Willden | 0329a82 | 2017-12-04 13:55:14 -0700 | [diff] [blame] | 55 | "android.hardware.keymaster@4.0", |
Shawn Willden | c67a8aa | 2017-12-03 17:51:29 -0700 | [diff] [blame] | 56 | "libbase", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 57 | "libbinder", |
| 58 | "libcrypto", |
Brian Claire Young | 3133c45 | 2018-08-31 13:56:49 -0700 | [diff] [blame] | 59 | "libcutils", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 60 | "libhardware", |
| 61 | "libhidlbase", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 62 | "libkeymaster4support", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 63 | "libkeymaster_messages", |
| 64 | "libkeymaster_portable", |
David Zeuthen | f2a2867 | 2020-01-30 16:20:07 -0500 | [diff] [blame^] | 65 | "libkeystore-attestation-application-id", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 66 | "libkeystore_aidl", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 67 | "libkeystore_binder", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 68 | "libkeystore_parcelables", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 69 | "liblog", |
Max Bires | 33aac2d | 2018-02-23 10:53:10 -0800 | [diff] [blame] | 70 | "libprotobuf-cpp-lite", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 71 | "libselinux", |
Max Bires | 33aac2d | 2018-02-23 10:53:10 -0800 | [diff] [blame] | 72 | "libservices", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 73 | "libsoftkeymasterdevice", |
| 74 | "libutils", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 75 | ], |
| 76 | init_rc: ["keystore.rc"], |
| 77 | aidl: { |
| 78 | include_dirs: ["frameworks/base/core/java/"], |
| 79 | }, |
| 80 | |
| 81 | product_variables: { |
| 82 | pdk: { |
| 83 | enabled: false, |
| 84 | }, |
Branden Archer | 84e7231 | 2019-01-04 10:33:16 -0800 | [diff] [blame] | 85 | debuggable: { |
| 86 | cflags: [ |
| 87 | // Allow VTS tests running as root to have |
| 88 | // additional permissions. |
| 89 | "-DGRANT_ROOT_ALL_PERMISSIONS", |
| 90 | ], |
| 91 | }, |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 92 | }, |
Rubin Xu | 0d0e113 | 2017-12-08 15:50:50 +0000 | [diff] [blame] | 93 | |
| 94 | required: ["keystore_cli_v2"], |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | cc_binary { |
| 98 | name: "keystore_cli", |
| 99 | defaults: ["keystore_defaults"], |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 100 | |
| 101 | srcs: ["keystore_cli.cpp"], |
| 102 | shared_libs: [ |
Brian Young | 9371e95 | 2018-02-23 18:03:14 +0000 | [diff] [blame] | 103 | "android.hardware.keymaster@4.0", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 104 | "libbinder", |
| 105 | "libcrypto", |
| 106 | "libcutils", |
| 107 | "libhidlbase", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 108 | "libkeystore_aidl", // for IKeyStoreService.asInterface() |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 109 | "libkeystore_binder", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 110 | "libkeystore_parcelables", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 111 | "liblog", |
| 112 | "libutils", |
| 113 | ], |
| 114 | } |
| 115 | |
| 116 | cc_binary { |
| 117 | name: "keystore_cli_v2", |
| 118 | defaults: ["keystore_defaults"], |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 119 | |
| 120 | cflags: [ |
| 121 | "-DKEYMASTER_NAME_TAGS", |
| 122 | "-Wno-unused-parameter", |
| 123 | ], |
| 124 | srcs: ["keystore_cli_v2.cpp"], |
| 125 | shared_libs: [ |
David Zeuthen | c6eb7cd | 2017-11-27 11:33:55 -0500 | [diff] [blame] | 126 | "android.hardware.confirmationui@1.0", |
David Zeuthen | c6eb7cd | 2017-11-27 11:33:55 -0500 | [diff] [blame] | 127 | "libbinder", |
Brian Young | 9a947d5 | 2018-02-23 18:03:14 +0000 | [diff] [blame] | 128 | "android.hardware.keymaster@4.0", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 129 | "libchrome", |
David Zeuthen | c6eb7cd | 2017-11-27 11:33:55 -0500 | [diff] [blame] | 130 | "libutils", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 131 | "libhidlbase", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 132 | "libkeymaster4support", |
David Zeuthen | c6eb7cd | 2017-11-27 11:33:55 -0500 | [diff] [blame] | 133 | "libkeystore_aidl", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 134 | "libkeystore_binder", |
David Zeuthen | c6eb7cd | 2017-11-27 11:33:55 -0500 | [diff] [blame] | 135 | "libkeystore_parcelables", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 136 | ], |
| 137 | |
| 138 | local_include_dirs: ["include"], |
| 139 | } |
| 140 | |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 141 | cc_library_shared { |
| 142 | name: "libkeystore_parcelables", |
| 143 | defaults: ["keystore_defaults"], |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 144 | export_include_dirs: ["include"], |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 145 | srcs: [ |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 146 | "KeymasterArguments.cpp", |
Rob Barnes | bb6cabd | 2018-10-04 17:10:37 -0600 | [diff] [blame] | 147 | "keystore_aidl_hidl_marshalling_utils.cpp", |
| 148 | "KeystoreResponse.cpp", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 149 | "OperationResult.cpp", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 150 | ], |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 151 | shared_libs: [ |
Shawn Willden | 0329a82 | 2017-12-04 13:55:14 -0700 | [diff] [blame] | 152 | "android.hardware.keymaster@4.0", |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 153 | "libbinder", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 154 | "libhardware", |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 155 | "libhidlbase", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 156 | "libkeymaster4support", |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 157 | "liblog", |
| 158 | "libprotobuf-cpp-lite", |
| 159 | "libutils", |
David Zeuthen | f2a2867 | 2020-01-30 16:20:07 -0500 | [diff] [blame^] | 160 | "libkeystore-attestation-application-id", |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 161 | ], |
| 162 | export_shared_lib_headers: [ |
Shawn Willden | 0329a82 | 2017-12-04 13:55:14 -0700 | [diff] [blame] | 163 | "android.hardware.keymaster@4.0", |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 164 | "libbinder", |
| 165 | "libhidlbase", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 166 | "libkeymaster4support", |
Dmitry Dementyev | af2968c | 2017-11-21 20:19:03 -0800 | [diff] [blame] | 167 | ], |
| 168 | } |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 169 | // Library for keystore clients |
| 170 | cc_library_shared { |
| 171 | name: "libkeystore_binder", |
| 172 | defaults: ["keystore_defaults"], |
| 173 | |
| 174 | srcs: [ |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 175 | "keyblob_utils.cpp", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 176 | "keystore_client.proto", |
| 177 | "keystore_client_impl.cpp", |
| 178 | "keystore_get.cpp", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 179 | ], |
| 180 | shared_libs: [ |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 181 | "android.hardware.keymaster@4.0", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 182 | "libbinder", |
| 183 | "libhidlbase", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 184 | "libkeymaster4support", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 185 | "libkeystore_aidl", |
| 186 | "libkeystore_parcelables", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 187 | "liblog", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 188 | "libprotobuf-cpp-lite", |
| 189 | "libutils", |
| 190 | ], |
| 191 | |
| 192 | proto: { |
| 193 | type: "lite", |
| 194 | export_proto_headers: true, |
| 195 | }, |
Dmitry Dementyev | a447b3c | 2017-10-27 23:09:53 -0700 | [diff] [blame] | 196 | aidl: { |
| 197 | export_aidl_headers: true, |
| 198 | include_dirs: ["frameworks/base/core/java/"], |
| 199 | }, |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 200 | export_include_dirs: ["include"], |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 201 | export_shared_lib_headers: [ |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 202 | "android.hardware.keymaster@4.0", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 203 | "libbinder", |
| 204 | "libhidlbase", |
Dmitry Dementyev | ab8aa1c | 2017-11-28 12:13:22 -0800 | [diff] [blame] | 205 | "libkeystore_aidl", |
| 206 | "libkeystore_parcelables", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 207 | ], |
| 208 | } |
| 209 | |
David Zeuthen | f2a2867 | 2020-01-30 16:20:07 -0500 | [diff] [blame^] | 210 | // Library used by both keystore and credstore for generating the ASN.1 stored |
| 211 | // in Tag::ATTESTATION_APPLICATION_ID |
| 212 | cc_library_shared { |
| 213 | name: "libkeystore-attestation-application-id", |
| 214 | defaults: ["keystore_defaults"], |
| 215 | |
| 216 | srcs: [ |
| 217 | ":IKeyAttestationApplicationIdProvider.aidl", |
| 218 | "keystore_attestation_id.cpp", |
| 219 | "KeyAttestationApplicationId.cpp", |
| 220 | "KeyAttestationPackageInfo.cpp", |
| 221 | "Signature.cpp", |
| 222 | ], |
| 223 | shared_libs: [ |
| 224 | "libbase", |
| 225 | "libbinder", |
| 226 | "libhidlbase", |
| 227 | "liblog", |
| 228 | "libutils", |
| 229 | "libcrypto", |
| 230 | ], |
| 231 | |
| 232 | export_include_dirs: ["include"], |
| 233 | } |
| 234 | |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 235 | // Library for keystore clients using the WiFi HIDL interface |
| 236 | cc_library_shared { |
| 237 | name: "libkeystore-wifi-hidl", |
| 238 | defaults: ["keystore_defaults"], |
| 239 | |
| 240 | srcs: ["keystore_get_wifi_hidl.cpp"], |
| 241 | shared_libs: [ |
| 242 | "android.system.wifi.keystore@1.0", |
| 243 | "libbase", |
| 244 | "libhidlbase", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 245 | "liblog", |
| 246 | "libutils", |
| 247 | ], |
| 248 | |
| 249 | export_include_dirs: ["include"], |
| 250 | |
| 251 | vendor: true, |
| 252 | } |
| 253 | |
| 254 | // Library for unit tests |
| 255 | cc_library_static { |
| 256 | name: "libkeystore_test", |
| 257 | defaults: ["keystore_defaults"], |
| 258 | |
Janis Danisevskis | 8f737ad | 2017-11-21 12:30:15 -0800 | [diff] [blame] | 259 | srcs: [ |
| 260 | "auth_token_table.cpp", |
Eran Messeri | 2ba77c3 | 2018-12-04 12:22:16 +0000 | [diff] [blame] | 261 | "blob.cpp", |
Janis Danisevskis | 8f737ad | 2017-11-21 12:30:15 -0800 | [diff] [blame] | 262 | ], |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 263 | cflags: [ "-O0", ], |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 264 | static_libs: ["libgtest_main"], |
| 265 | shared_libs: [ |
Shawn Willden | 0329a82 | 2017-12-04 13:55:14 -0700 | [diff] [blame] | 266 | "android.hardware.keymaster@4.0", |
Eran Messeri | 03fc4c8 | 2018-08-16 18:53:15 +0100 | [diff] [blame] | 267 | "libbinder", |
| 268 | "libcrypto", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 269 | "libhidlbase", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 270 | "libkeymaster4support", |
David Zeuthen | f2a2867 | 2020-01-30 16:20:07 -0500 | [diff] [blame^] | 271 | "libkeystore-attestation-application-id", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 272 | "libutils", |
Eran Messeri | 03fc4c8 | 2018-08-16 18:53:15 +0100 | [diff] [blame] | 273 | "libkeystore_aidl", |
| 274 | "libkeystore_parcelables", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 275 | ], |
| 276 | export_shared_lib_headers: [ |
Shawn Willden | 0329a82 | 2017-12-04 13:55:14 -0700 | [diff] [blame] | 277 | "android.hardware.keymaster@4.0", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 278 | "libhidlbase", |
Shawn Willden | bb22a6c | 2017-12-06 19:35:28 -0700 | [diff] [blame] | 279 | "libkeymaster4support", |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 280 | ], |
| 281 | |
Eran Messeri | 03fc4c8 | 2018-08-16 18:53:15 +0100 | [diff] [blame] | 282 | aidl: { |
| 283 | include_dirs: ["frameworks/base/core/java/"], |
| 284 | }, |
Jeff Sharkey | c493cf9 | 2017-10-23 10:39:50 -0600 | [diff] [blame] | 285 | export_include_dirs: ["include"], |
| 286 | } |
| 287 | |
Logan Chien | 3bd6a51 | 2018-02-14 13:57:11 +0800 | [diff] [blame] | 288 | filegroup { |
| 289 | name: "keystore_aidl", |
| 290 | srcs: [ |
| 291 | "binder/android/security/IConfirmationPromptCallback.aidl", |
Rob Barnes | bb6cabd | 2018-10-04 17:10:37 -0600 | [diff] [blame] | 292 | "binder/android/security/keystore/IKeystoreCertificateChainCallback.aidl", |
| 293 | "binder/android/security/keystore/IKeystoreExportKeyCallback.aidl", |
| 294 | "binder/android/security/keystore/IKeystoreKeyCharacteristicsCallback.aidl", |
| 295 | "binder/android/security/keystore/IKeystoreOperationResultCallback.aidl", |
| 296 | "binder/android/security/keystore/IKeystoreResponseCallback.aidl", |
| 297 | "binder/android/security/keystore/IKeystoreService.aidl", |
Logan Chien | 3bd6a51 | 2018-02-14 13:57:11 +0800 | [diff] [blame] | 298 | ], |
Dan Willemsen | 418db44 | 2018-09-14 21:28:12 -0700 | [diff] [blame] | 299 | path: "binder", |
Logan Chien | 3bd6a51 | 2018-02-14 13:57:11 +0800 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | cc_library_shared { |
| 303 | name: "libkeystore_aidl", |
| 304 | srcs: [":keystore_aidl"], |
| 305 | aidl: { |
| 306 | export_aidl_headers: true, |
| 307 | include_dirs: [ |
| 308 | "system/security/keystore/binder", |
| 309 | ], |
| 310 | }, |
| 311 | shared_libs: [ |
| 312 | "libbinder", |
| 313 | "libcutils", |
| 314 | "libhardware", |
| 315 | "libhidlbase", |
Logan Chien | 3bd6a51 | 2018-02-14 13:57:11 +0800 | [diff] [blame] | 316 | "libkeystore_parcelables", |
| 317 | "liblog", |
| 318 | "libselinux", |
| 319 | "libutils", |
| 320 | ], |
| 321 | export_shared_lib_headers: [ |
| 322 | "libbinder", |
| 323 | "libkeystore_parcelables", |
| 324 | ], |
| 325 | } |