Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 1 | cc_defaults { |
| 2 | name: "vold_default_flags", |
| 3 | |
| 4 | cflags: [ |
| 5 | "-Wall", |
| 6 | "-Werror", |
| 7 | "-Wextra", |
| 8 | "-Wno-missing-field-initializers", |
| 9 | "-Wno-unused-parameter", |
| 10 | "-Wno-unused-variable", |
| 11 | ], |
| 12 | |
| 13 | clang: true, |
| 14 | |
| 15 | tidy: true, |
| 16 | tidy_checks: [ |
| 17 | "-*", |
| 18 | "cert-*", |
| 19 | "clang-analyzer-security*", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 20 | ], |
| 21 | tidy_flags: [ |
| 22 | "-warnings-as-errors=clang-analyzer-security*,cert-*", |
| 23 | ], |
| 24 | } |
| 25 | |
| 26 | cc_defaults { |
| 27 | name: "vold_default_libs", |
| 28 | |
| 29 | static_libs: [ |
| 30 | "libavb", |
| 31 | "libbootloader_message", |
| 32 | "libfec", |
| 33 | "libfec_rs", |
Bowgo Tsai | 549fd0e | 2018-11-29 22:15:08 +0800 | [diff] [blame] | 34 | "libfs_avb", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 35 | "libfs_mgr", |
| 36 | "libscrypt_static", |
| 37 | "libsquashfs_utils", |
| 38 | "libvold_binder", |
| 39 | ], |
| 40 | shared_libs: [ |
| 41 | "android.hardware.keymaster@3.0", |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 42 | "android.hardware.keymaster@4.0", |
Daniel Rosenberg | d399249 | 2018-10-02 17:40:44 -0700 | [diff] [blame] | 43 | "android.hardware.boot@1.0", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 44 | "libbase", |
| 45 | "libbinder", |
| 46 | "libcrypto", |
| 47 | "libcrypto_utils", |
| 48 | "libcutils", |
| 49 | "libdiskconfig", |
| 50 | "libext4_utils", |
| 51 | "libf2fs_sparseblock", |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 52 | "libfscrypt", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 53 | "libhardware", |
| 54 | "libhardware_legacy", |
| 55 | "libhidlbase", |
| 56 | "libhwbinder", |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 57 | "libkeymaster4support", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 58 | "libkeyutils", |
| 59 | "liblog", |
| 60 | "liblogwrap", |
| 61 | "libselinux", |
| 62 | "libsysutils", |
| 63 | "libutils", |
| 64 | ], |
| 65 | } |
| 66 | |
| 67 | cc_library_static { |
| 68 | name: "libvold_binder", |
| 69 | defaults: ["vold_default_flags"], |
| 70 | |
| 71 | srcs: [ |
Colin Cross | a838863 | 2017-11-25 08:47:19 -0800 | [diff] [blame] | 72 | ":vold_aidl", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 73 | ], |
| 74 | shared_libs: [ |
| 75 | "libbinder", |
| 76 | "libutils", |
| 77 | ], |
| 78 | aidl: { |
| 79 | local_include_dirs: ["binder"], |
| 80 | include_dirs: ["frameworks/native/aidl/binder"], |
| 81 | export_aidl_headers: true, |
| 82 | }, |
| 83 | } |
| 84 | |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 85 | cc_library_headers { |
| 86 | name: "libvold_headers", |
| 87 | export_include_dirs: ["."], |
| 88 | } |
| 89 | |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 90 | // Static library factored out to support testing |
| 91 | cc_library_static { |
| 92 | name: "libvold", |
| 93 | defaults: [ |
| 94 | "vold_default_flags", |
| 95 | "vold_default_libs", |
| 96 | ], |
| 97 | |
| 98 | srcs: [ |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 99 | "AppFuseUtil.cpp", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 100 | "Benchmark.cpp", |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 101 | "CheckEncryption.cpp", |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 102 | "Checkpoint.cpp", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 103 | "Devmapper.cpp", |
| 104 | "EncryptInplace.cpp", |
Jeff Sharkey | 2048a28 | 2017-06-15 09:59:43 -0600 | [diff] [blame] | 105 | "FileDeviceUtils.cpp", |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 106 | "FsCrypt.cpp", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 107 | "IdleMaint.cpp", |
| 108 | "KeyBuffer.cpp", |
| 109 | "KeyStorage.cpp", |
| 110 | "KeyUtil.cpp", |
| 111 | "Keymaster.cpp", |
| 112 | "Loop.cpp", |
| 113 | "MetadataCrypt.cpp", |
| 114 | "MoveStorage.cpp", |
| 115 | "NetlinkHandler.cpp", |
| 116 | "NetlinkManager.cpp", |
| 117 | "Process.cpp", |
| 118 | "ScryptParameters.cpp", |
| 119 | "Utils.cpp", |
| 120 | "VoldNativeService.cpp", |
| 121 | "VoldUtil.cpp", |
| 122 | "VolumeManager.cpp", |
| 123 | "cryptfs.cpp", |
Jeff Sharkey | 37ba125 | 2018-01-19 10:55:18 +0900 | [diff] [blame] | 124 | "fs/Exfat.cpp", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 125 | "fs/Ext4.cpp", |
| 126 | "fs/F2fs.cpp", |
| 127 | "fs/Vfat.cpp", |
| 128 | "model/Disk.cpp", |
| 129 | "model/EmulatedVolume.cpp", |
| 130 | "model/ObbVolume.cpp", |
| 131 | "model/PrivateVolume.cpp", |
| 132 | "model/PublicVolume.cpp", |
| 133 | "model/VolumeBase.cpp", |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 134 | "model/StubVolume.cpp", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 135 | "secontext.cpp", |
| 136 | ], |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 137 | product_variables: { |
| 138 | arc: { |
| 139 | exclude_srcs: [ |
Risan | dcbd4fc | 2018-11-02 01:26:31 +0900 | [diff] [blame] | 140 | "AppFuseUtil.cpp", |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 141 | "model/ObbVolume.cpp", |
| 142 | ], |
| 143 | static_libs: [ |
Risan | ea2d2bb | 2018-02-23 08:12:37 +0900 | [diff] [blame] | 144 | "arc_services_aidl", |
Risan | dcbd4fc | 2018-11-02 01:26:31 +0900 | [diff] [blame] | 145 | "libarcappfuse", |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 146 | "libarcobbvolume", |
| 147 | ], |
| 148 | }, |
Mark Salyzyn | c4405e9 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 149 | debuggable: { |
| 150 | cppflags: ["-D__ANDROID_DEBUGGABLE__"], |
| 151 | }, |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 152 | }, |
Yifan Hong | 024a124 | 2018-08-10 13:50:46 -0700 | [diff] [blame] | 153 | shared_libs: [ |
Yifan Hong | 91a68df | 2018-09-19 10:28:16 -0700 | [diff] [blame] | 154 | "android.hardware.health.storage@1.0", |
Yifan Hong | 024a124 | 2018-08-10 13:50:46 -0700 | [diff] [blame] | 155 | ], |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | cc_binary { |
| 159 | name: "vold", |
| 160 | defaults: [ |
| 161 | "vold_default_flags", |
| 162 | "vold_default_libs", |
| 163 | ], |
| 164 | |
| 165 | srcs: ["main.cpp"], |
| 166 | static_libs: ["libvold"], |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 167 | product_variables: { |
| 168 | arc: { |
| 169 | static_libs: [ |
Risan | ea2d2bb | 2018-02-23 08:12:37 +0900 | [diff] [blame] | 170 | "arc_services_aidl", |
Risan | dcbd4fc | 2018-11-02 01:26:31 +0900 | [diff] [blame] | 171 | "libarcappfuse", |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 172 | "libarcobbvolume", |
Risan | 9929e7d | 2018-01-22 11:04:25 +0900 | [diff] [blame] | 173 | ], |
Risan | aedae61 | 2017-11-27 18:01:35 +0900 | [diff] [blame] | 174 | }, |
| 175 | }, |
Wei Wang | f5b085c | 2018-05-15 16:12:20 -0700 | [diff] [blame] | 176 | init_rc: [ |
| 177 | "vold.rc", |
| 178 | "wait_for_keymaster.rc", |
| 179 | ], |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 180 | |
| 181 | required: [ |
| 182 | "mke2fs", |
| 183 | "vold_prepare_subdirs", |
Paul Crowley | 8f82879 | 2018-02-07 14:41:26 -0800 | [diff] [blame] | 184 | "wait_for_keymaster", |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 185 | ], |
Yifan Hong | 024a124 | 2018-08-10 13:50:46 -0700 | [diff] [blame] | 186 | |
| 187 | shared_libs: [ |
Yifan Hong | 91a68df | 2018-09-19 10:28:16 -0700 | [diff] [blame] | 188 | "android.hardware.health.storage@1.0", |
Yifan Hong | 024a124 | 2018-08-10 13:50:46 -0700 | [diff] [blame] | 189 | "libhidltransport", |
| 190 | ], |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | cc_binary { |
| 194 | name: "vdc", |
| 195 | defaults: ["vold_default_flags"], |
| 196 | |
| 197 | srcs: ["vdc.cpp"], |
| 198 | shared_libs: [ |
| 199 | "libbase", |
| 200 | "libbinder", |
| 201 | "libcutils", |
| 202 | "libutils", |
| 203 | ], |
| 204 | static_libs: [ |
| 205 | "libvold_binder", |
| 206 | ], |
| 207 | init_rc: ["vdc.rc"], |
| 208 | } |
| 209 | |
| 210 | cc_binary { |
Paul Crowley | 8f82879 | 2018-02-07 14:41:26 -0800 | [diff] [blame] | 211 | name: "wait_for_keymaster", |
| 212 | defaults: ["vold_default_flags"], |
| 213 | |
| 214 | srcs: [ |
| 215 | "wait_for_keymaster.cpp", |
| 216 | "Keymaster.cpp", |
| 217 | ], |
| 218 | shared_libs: [ |
| 219 | "libbase", |
| 220 | "libbinder", |
| 221 | |
| 222 | "android.hardware.keymaster@3.0", |
| 223 | "android.hardware.keymaster@4.0", |
| 224 | "libhardware", |
| 225 | "libhardware_legacy", |
| 226 | "libhidlbase", |
| 227 | "libhwbinder", |
| 228 | "libkeymaster4support", |
| 229 | ], |
| 230 | } |
| 231 | |
| 232 | cc_binary { |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 233 | name: "secdiscard", |
| 234 | defaults: ["vold_default_flags"], |
| 235 | |
| 236 | srcs: [ |
| 237 | "FileDeviceUtils.cpp", |
| 238 | "secdiscard.cpp", |
| 239 | ], |
| 240 | shared_libs: ["libbase"], |
| 241 | } |
| 242 | |
| 243 | cc_binary { |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 244 | name: "vold_prepare_subdirs", |
| 245 | defaults: ["vold_default_flags"], |
| 246 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 247 | srcs: ["vold_prepare_subdirs.cpp", "Utils.cpp"], |
| 248 | shared_libs: [ |
| 249 | "libbase", |
| 250 | "libcutils", |
| 251 | "liblogwrap", |
| 252 | "libselinux", |
| 253 | "libutils", |
| 254 | ], |
| 255 | static_libs: [ |
| 256 | "libvold_binder", |
| 257 | ], |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 258 | } |
| 259 | |
Colin Cross | a838863 | 2017-11-25 08:47:19 -0800 | [diff] [blame] | 260 | filegroup { |
| 261 | name: "vold_aidl", |
| 262 | srcs: [ |
| 263 | "binder/android/os/IVold.aidl", |
| 264 | "binder/android/os/IVoldListener.aidl", |
| 265 | "binder/android/os/IVoldTaskListener.aidl", |
| 266 | ], |
| 267 | } |
| 268 | |
Jeff Sharkey | d16dc50 | 2017-10-23 14:38:55 -0600 | [diff] [blame] | 269 | subdirs = ["tests"] |