merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 1 | // |
Michael Bestas | 4e1ba2f | 2024-05-12 06:38:39 +0300 | [diff] [blame] | 2 | // SPDX-FileCopyrightText: 2020 The Android Open Source Project |
| 3 | // SPDX-License-Identifier: Apache-2.0 |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 4 | // |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 5 | |
| 6 | cc_library { |
Michael Bestas | 7daa2d4 | 2023-08-29 20:12:57 +0300 | [diff] [blame] | 7 | name: "libgptutils.fairphone_lahaina", |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 8 | vendor: true, |
| 9 | recovery_available: true, |
| 10 | shared_libs: [ |
| 11 | "libcutils", |
| 12 | "liblog", |
| 13 | "libz", |
| 14 | ], |
| 15 | cflags: [ |
| 16 | "-Wall", |
| 17 | "-Werror", |
Michael Bestas | 5843bae | 2023-08-29 22:32:54 +0300 | [diff] [blame] | 18 | "-D_BSG_FRAMEWORK_KERNEL_HEADERS", |
merothh | 5485610 | 2021-11-04 12:07:41 +0530 | [diff] [blame] | 19 | ], |
| 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 | } |