mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_sm6250-common.git
synced 2025-04-29 10:37:35 +09:00
* This libinit has been made to commonize device variants props handling [dereference23: Adapt for Xiaomi SM6250] Signed-off-by: Alexander Winkowski <dereference23@outlook.com> Change-Id: Iab68ff451ab1d6e861fb4cda4ef07fad3123ecde
26 lines
577 B
Plaintext
26 lines
577 B
Plaintext
//
|
|
// Copyright (C) 2021 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_static {
|
|
name: "libinit_xiaomi_atoll",
|
|
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_atoll",
|
|
srcs: ["init_xiaomi_atoll.cpp"],
|
|
whole_static_libs: ["libinit_xiaomi_atoll"],
|
|
include_dirs: ["system/core/init"],
|
|
recovery_available: true,
|
|
}
|