2019-10-22 21:30:30 +02:00
|
|
|
// Copyright 2019 The Android Open Source Project
|
|
|
|
|
2021-02-13 02:48:16 +01:00
|
|
|
package {
|
|
|
|
// See: http://go/android-license-faq
|
|
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
|
|
// all of the 'license_kinds' from "system_core_license"
|
|
|
|
// to get the below license kinds:
|
|
|
|
// SPDX-license-identifier-Apache-2.0
|
|
|
|
default_applicable_licenses: ["system_core_license"],
|
|
|
|
}
|
|
|
|
|
2019-10-22 21:30:30 +02:00
|
|
|
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",
|
|
|
|
],
|
|
|
|
}
|