f61f41494e
Test: adb enable-verity Test: adb disable-verity Test: adb shell enable-verity Test: adb shell disable-verity Test: fs_mgr/tests/adb-remount-test.sh Change-Id: I0f21a6678b332cc9166d912aa38952d50d924566
24 lines
451 B
Text
24 lines
451 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",
|
|
"liblog",
|
|
],
|
|
static_libs: [
|
|
"libavb_user",
|
|
],
|
|
|
|
cflags: ["-Werror"],
|
|
symlinks: [
|
|
"enable-verity",
|
|
"disable-verity",
|
|
],
|
|
}
|