This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hardware_oplus-CherishOS/gpt-utils/Android.bp
LuK1337 e215489e8d gpt-utils: Use generated_kernel_headers
Change-Id: Id56f1c0603ff13b5d64eb4db33807ac13dcdd619
2022-06-28 15:54:21 +02:00

23 lines
479 B
Plaintext

//
// Copyright (C) 2022 The Android Open Source Project
// SPDX-License-Identifier: Apache-2.0
//
cc_library {
name: "libgptutils.oplus",
cflags: ["-D_BSG_FRAMEWORK_KERNEL_HEADERS"],
export_include_dirs: ["."],
header_libs: ["generated_kernel_headers"],
recovery_available: true,
shared_libs: [
"libcutils",
"liblog",
"libz",
],
srcs: [
"gpt-utils.cpp",
"recovery-ufs-bsg.cpp",
],
vendor: true,
}