2019-10-22 21:30:30 +02:00
|
|
|
// Copyright 2019 The Android Open Source Project
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
name: "set-verity-state",
|
|
|
|
srcs: ["set-verity-state.cpp"],
|
|
|
|
shared_libs: [
|
|
|
|
"libbase",
|
|
|
|
"libcrypto",
|
|
|
|
"libcrypto_utils",
|
|
|
|
"libcutils",
|
|
|
|
"libfec",
|
2019-12-18 06:06:33 +01:00
|
|
|
"libfs_mgr_binder",
|
2019-10-22 21:30:30 +02:00
|
|
|
"liblog",
|
2019-12-18 06:06:33 +01:00
|
|
|
"libutils",
|
2019-10-22 21:30:30 +02:00
|
|
|
],
|
|
|
|
static_libs: [
|
|
|
|
"libavb_user",
|
|
|
|
],
|
|
|
|
|
|
|
|
cflags: ["-Werror"],
|
|
|
|
symlinks: [
|
|
|
|
"enable-verity",
|
|
|
|
"disable-verity",
|
|
|
|
],
|
|
|
|
}
|