platform_vendor_tequila/verity_tool/Android.bp
Christopher N. Hesse e74d3b7659 verity: Implement verity tool
This allows for toggling block device verification at runtime.

Both A/B and non-A/B devices as well as VB1.0 and VB2.0 (AVB)
are supported.

Change-Id: If6bec67a000074804f71fa098ad46ba395cac635
2018-05-17 13:33:05 +02:00

28 lines
551 B
Text

// Copyright 2018 The LineageOS Project
cc_library {
name: "libveritytool",
srcs: ["verity_tool.cpp"],
local_include_dirs: ["include"],
export_include_dirs: ["include"],
cflags: ["-Werror"],
shared_libs: [
"libbase",
"libcrypto",
"libcrypto_utils",
"libfec",
],
static_libs: [
"libfs_mgr",
],
whole_static_libs: [
"libavb_user",
],
}
cc_binary {
name: "veritytool",
srcs: ["main.cpp"],
shared_libs: ["libveritytool"],
cflags: ["-Werror"],
}