Import from Xiaomi SM8250 update signature of redmi k60 remove SafetyNet workaround Co-Authored-By: Ramii Ahmed <ramy@ahmedramy.com> Co-Authored-By: luk1337 <priv.luk@gmail.com> Co-Authored-By: klozz <carlosj@klozz.dev> Signed-off-by: flakeforever <113103193+flakeforever@users.noreply.github.com>
26 lines
589 B
Plaintext
26 lines
589 B
Plaintext
//
|
|
// Copyright (C) 2021 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_static {
|
|
name: "libinit_xiaomi_mondrian",
|
|
srcs: [
|
|
"libinit_dalvik_heap.cpp",
|
|
"libinit_variant.cpp",
|
|
"libinit_utils.cpp",
|
|
],
|
|
whole_static_libs: ["libbase"],
|
|
export_include_dirs: ["include"],
|
|
recovery_available: true,
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "init_xiaomi_mondrian",
|
|
srcs: ["init_xiaomi_mondrian.cpp"],
|
|
whole_static_libs: ["libinit_xiaomi_mondrian"],
|
|
include_dirs: ["system/core/init"],
|
|
recovery_available: true,
|
|
}
|