2017-10-23 22:38:55 +02:00
|
|
|
cc_defaults {
|
|
|
|
name: "vold_default_flags",
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
"-Wextra",
|
|
|
|
"-Wno-missing-field-initializers",
|
|
|
|
"-Wno-unused-parameter",
|
|
|
|
"-Wno-unused-variable",
|
|
|
|
],
|
|
|
|
|
|
|
|
clang: true,
|
|
|
|
|
|
|
|
tidy: true,
|
|
|
|
tidy_checks: [
|
|
|
|
"-*",
|
|
|
|
"cert-*",
|
|
|
|
"clang-analyzer-security*",
|
|
|
|
],
|
|
|
|
tidy_flags: [
|
|
|
|
"-warnings-as-errors=clang-analyzer-security*,cert-*",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_defaults {
|
|
|
|
name: "vold_default_libs",
|
|
|
|
|
|
|
|
static_libs: [
|
|
|
|
"libavb",
|
|
|
|
"libbootloader_message",
|
|
|
|
"libfec",
|
|
|
|
"libfec_rs",
|
|
|
|
"libfs_mgr",
|
|
|
|
"libscrypt_static",
|
|
|
|
"libsquashfs_utils",
|
|
|
|
"libvold_binder",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"android.hardware.keymaster@3.0",
|
|
|
|
"libbase",
|
|
|
|
"libbinder",
|
|
|
|
"libcrypto",
|
|
|
|
"libcrypto_utils",
|
|
|
|
"libcutils",
|
|
|
|
"libdiskconfig",
|
|
|
|
"libext4_utils",
|
|
|
|
"libf2fs_sparseblock",
|
|
|
|
"libhardware",
|
|
|
|
"libhardware_legacy",
|
|
|
|
"libhidlbase",
|
|
|
|
"libhwbinder",
|
|
|
|
"libkeyutils",
|
|
|
|
"liblog",
|
|
|
|
"liblogwrap",
|
|
|
|
"libselinux",
|
|
|
|
"libsysutils",
|
|
|
|
"libutils",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library_static {
|
|
|
|
name: "libvold_binder",
|
|
|
|
defaults: ["vold_default_flags"],
|
|
|
|
|
|
|
|
srcs: [
|
2017-11-25 17:47:19 +01:00
|
|
|
":vold_aidl",
|
2017-10-23 22:38:55 +02:00
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libbinder",
|
|
|
|
"libutils",
|
|
|
|
],
|
|
|
|
aidl: {
|
|
|
|
local_include_dirs: ["binder"],
|
|
|
|
include_dirs: ["frameworks/native/aidl/binder"],
|
|
|
|
export_aidl_headers: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-11-27 10:01:35 +01:00
|
|
|
cc_library_headers {
|
|
|
|
name: "libvold_headers",
|
|
|
|
export_include_dirs: ["."],
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:38:55 +02:00
|
|
|
// Static library factored out to support testing
|
|
|
|
cc_library_static {
|
|
|
|
name: "libvold",
|
|
|
|
defaults: [
|
|
|
|
"vold_default_flags",
|
|
|
|
"vold_default_libs",
|
|
|
|
],
|
|
|
|
|
|
|
|
srcs: [
|
|
|
|
"Benchmark.cpp",
|
2017-06-15 17:59:43 +02:00
|
|
|
"CheckEncryption.cpp",
|
2017-10-23 22:38:55 +02:00
|
|
|
"Devmapper.cpp",
|
|
|
|
"EncryptInplace.cpp",
|
|
|
|
"Ext4Crypt.cpp",
|
2017-06-15 17:59:43 +02:00
|
|
|
"FileDeviceUtils.cpp",
|
2017-10-23 22:38:55 +02:00
|
|
|
"IdleMaint.cpp",
|
|
|
|
"KeyBuffer.cpp",
|
|
|
|
"KeyStorage.cpp",
|
|
|
|
"KeyUtil.cpp",
|
|
|
|
"Keymaster.cpp",
|
|
|
|
"Loop.cpp",
|
|
|
|
"MetadataCrypt.cpp",
|
|
|
|
"MoveStorage.cpp",
|
|
|
|
"NetlinkHandler.cpp",
|
|
|
|
"NetlinkManager.cpp",
|
|
|
|
"Process.cpp",
|
|
|
|
"ScryptParameters.cpp",
|
|
|
|
"Utils.cpp",
|
|
|
|
"VoldNativeService.cpp",
|
|
|
|
"VoldUtil.cpp",
|
|
|
|
"VolumeManager.cpp",
|
2017-11-09 23:59:39 +01:00
|
|
|
"authorization_set.cpp",
|
2017-10-23 22:38:55 +02:00
|
|
|
"cryptfs.cpp",
|
2018-01-19 02:55:18 +01:00
|
|
|
"fs/Exfat.cpp",
|
2017-10-23 22:38:55 +02:00
|
|
|
"fs/Ext4.cpp",
|
|
|
|
"fs/F2fs.cpp",
|
|
|
|
"fs/Vfat.cpp",
|
|
|
|
"model/Disk.cpp",
|
|
|
|
"model/EmulatedVolume.cpp",
|
|
|
|
"model/ObbVolume.cpp",
|
|
|
|
"model/PrivateVolume.cpp",
|
|
|
|
"model/PublicVolume.cpp",
|
|
|
|
"model/VolumeBase.cpp",
|
|
|
|
"secontext.cpp",
|
|
|
|
],
|
2017-11-27 10:01:35 +01:00
|
|
|
product_variables: {
|
|
|
|
arc: {
|
|
|
|
exclude_srcs: [
|
|
|
|
"model/ObbVolume.cpp",
|
|
|
|
],
|
|
|
|
static_libs: [
|
|
|
|
"libarcobbvolume",
|
|
|
|
],
|
2018-01-22 03:04:25 +01:00
|
|
|
shared_libs: [
|
|
|
|
"libarcmounter",
|
|
|
|
],
|
2017-11-27 10:01:35 +01:00
|
|
|
},
|
|
|
|
},
|
2017-10-23 22:38:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
name: "vold",
|
|
|
|
defaults: [
|
|
|
|
"vold_default_flags",
|
|
|
|
"vold_default_libs",
|
|
|
|
],
|
|
|
|
|
|
|
|
srcs: ["main.cpp"],
|
|
|
|
static_libs: ["libvold"],
|
2017-11-27 10:01:35 +01:00
|
|
|
product_variables: {
|
|
|
|
arc: {
|
|
|
|
static_libs: [
|
|
|
|
"libarcobbvolume",
|
2018-01-22 03:04:25 +01:00
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libarcmounter",
|
|
|
|
],
|
|
|
|
|
2017-11-27 10:01:35 +01:00
|
|
|
},
|
|
|
|
},
|
2017-10-23 22:38:55 +02:00
|
|
|
init_rc: ["vold.rc"],
|
|
|
|
|
|
|
|
required: [
|
|
|
|
"mke2fs",
|
|
|
|
"vold_prepare_subdirs",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
name: "vdc",
|
|
|
|
defaults: ["vold_default_flags"],
|
|
|
|
|
|
|
|
srcs: ["vdc.cpp"],
|
|
|
|
shared_libs: [
|
|
|
|
"libbase",
|
|
|
|
"libbinder",
|
|
|
|
"libcutils",
|
|
|
|
"libutils",
|
|
|
|
],
|
|
|
|
static_libs: [
|
|
|
|
"libvold_binder",
|
|
|
|
],
|
|
|
|
init_rc: ["vdc.rc"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
name: "secdiscard",
|
|
|
|
defaults: ["vold_default_flags"],
|
|
|
|
|
|
|
|
srcs: [
|
|
|
|
"FileDeviceUtils.cpp",
|
|
|
|
"secdiscard.cpp",
|
|
|
|
],
|
|
|
|
shared_libs: ["libbase"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
2017-10-20 17:17:54 +02:00
|
|
|
name: "vold_prepare_subdirs",
|
2017-10-23 22:38:55 +02:00
|
|
|
defaults: ["vold_default_flags"],
|
|
|
|
|
2017-10-20 17:17:54 +02:00
|
|
|
srcs: ["vold_prepare_subdirs.cpp", "Utils.cpp"],
|
2017-10-23 22:38:55 +02:00
|
|
|
shared_libs: [
|
|
|
|
"libbase",
|
|
|
|
"libcutils",
|
2017-10-20 17:17:54 +02:00
|
|
|
"liblogwrap",
|
2017-10-23 22:38:55 +02:00
|
|
|
"libselinux",
|
2017-10-20 17:17:54 +02:00
|
|
|
"libutils",
|
|
|
|
],
|
|
|
|
static_libs: [
|
|
|
|
"libvold_binder",
|
2017-10-23 22:38:55 +02:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2017-11-25 17:47:19 +01:00
|
|
|
filegroup {
|
|
|
|
name: "vold_aidl",
|
|
|
|
srcs: [
|
|
|
|
"binder/android/os/IVold.aidl",
|
|
|
|
"binder/android/os/IVoldListener.aidl",
|
|
|
|
"binder/android/os/IVoldTaskListener.aidl",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:38:55 +02:00
|
|
|
subdirs = ["tests"]
|