blob: 83af78da19cd5905a845c2f13d199b5b70bd6271 [file] [log] [blame]
merothh54856102021-11-04 12:07:41 +05301//
Michael Bestas4e1ba2f2024-05-12 06:38:39 +03002// SPDX-FileCopyrightText: 2020 The Android Open Source Project
3// SPDX-License-Identifier: Apache-2.0
merothh54856102021-11-04 12:07:41 +05304//
merothh54856102021-11-04 12:07:41 +05305
6cc_library {
Michael Bestas9e3d0d62024-05-28 03:47:26 +03007 name: "libgptutils.otter",
merothh54856102021-11-04 12:07:41 +05308 vendor: true,
9 recovery_available: true,
10 shared_libs: [
11 "libcutils",
12 "liblog",
13 "libz",
14 ],
15 cflags: [
16 "-Wall",
17 "-Werror",
Michael Bestas5843bae2023-08-29 22:32:54 +030018 "-D_BSG_FRAMEWORK_KERNEL_HEADERS",
merothh54856102021-11-04 12:07:41 +053019 ],
20 srcs: [
21 "gpt-utils.cpp",
22 "recovery-ufs-bsg.cpp",
23 ],
24 owner: "qti",
25 header_libs: [
26 "generated_kernel_headers",
27 ],
28 export_include_dirs: ["."],
29}