* From https://github.com/LineageOS/android_device_xiaomi_sm8150-common.
Revert "raphael: build some NFC packages"
This reverts commit bbee1443e1.
26 lines
585 B
Plaintext
26 lines
585 B
Plaintext
//
|
|
// Copyright (C) 2021 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_library_static {
|
|
name: "libinit_xiaomi_raphael",
|
|
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_raphael",
|
|
srcs: ["init_xiaomi_raphael.cpp"],
|
|
whole_static_libs: ["libinit_xiaomi_raphael"],
|
|
include_dirs: ["system/core/init"],
|
|
recovery_available: true,
|
|
}
|