bd55929409
Now that remount can create a scratch partition via gsid, callers into fs_mgr_overlayfs need to link to libfs_mgr_binder. Bug: 134949511 Test: adb disable-verity Change-Id: Ia8342075822613bc5a6c4788a362db1e72684fba
25 lines
478 B
Text
25 lines
478 B
Text
// 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",
|
|
"libfs_mgr_binder",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
static_libs: [
|
|
"libavb_user",
|
|
],
|
|
|
|
cflags: ["-Werror"],
|
|
symlinks: [
|
|
"enable-verity",
|
|
"disable-verity",
|
|
],
|
|
}
|