Co-Authored-By: Ramii Ahmed <ramy@ahmedramy.com> Co-Authored-By: luk1337 <priv.luk@gmail.com> Co-Authored-By: Arian <arian.kulmer@web.de> Co-Authored-By: Mohammed Althaf Thayyil <me@althafvly.com> Co-Authored-By: YuKongA <70465933+YuKongA@users.noreply.github.com>
26 lines
581 B
Plaintext
26 lines
581 B
Plaintext
//
|
|
// Copyright (C) 2021 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_static {
|
|
name: "libinit_xiaomi_marble",
|
|
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_marble",
|
|
srcs: ["init_xiaomi_marble.cpp"],
|
|
whole_static_libs: ["libinit_xiaomi_marble"],
|
|
include_dirs: ["system/core/init"],
|
|
recovery_available: true,
|
|
}
|