blob: 0a2ecd889c65379a20bc0d0f4e8b9b68d9c95181 [file] [log] [blame]
Christopher N. Hessee74d3b72018-02-24 23:33:49 -08001// Copyright 2018 The LineageOS Project
2
3cc_library {
4 name: "libveritytool",
5 srcs: ["verity_tool.cpp"],
6 local_include_dirs: ["include"],
7 export_include_dirs: ["include"],
8 cflags: ["-Werror"],
9 shared_libs: [
10 "libbase",
11 "libcrypto",
12 "libcrypto_utils",
13 "libfec",
14 ],
15 static_libs: [
16 "libfs_mgr",
17 ],
18 whole_static_libs: [
19 "libavb_user",
20 ],
21}
22
23cc_binary {
24 name: "veritytool",
25 srcs: ["main.cpp"],
26 shared_libs: ["libveritytool"],
27 cflags: ["-Werror"],
28}