Files
device_motorola_payton/bootctrl/Android.bp
Michael Bestas 1fe55f06b8 payton: Switch to SPDX copyright & remove dates
Change-Id: I7c2e0ece0c8a4b50a008b956cac82ef9b1850617
2025-09-07 22:21:08 -03:00

44 lines
804 B
Plaintext

//
// SPDX-FileCopyrightText: 2018 The Android Open Source Project
// SPDX-FileCopyrightText: The LineageOS Project
// SPDX-License-Identifier: Apache-2.0
//
filegroup {
name: "bootctrl_hal_src",
srcs: [
"boot_control.cpp",
],
}
cc_defaults {
name: "bootctrl_hal_defaults",
proprietary: true,
recovery_available: true,
header_libs: [
"libhardware_headers",
"libsystem_headers",
],
shared_libs: [
"libcutils",
"liblog",
"libz",
],
owner: "qti",
relative_install_path: "hw",
cflags: [
"-Wall",
"-Werror",
],
srcs: [
":bootctrl_hal_src",
],
}
cc_library {
name: "bootctrl.qcom",
defaults: ["bootctrl_hal_defaults"],
static_libs: ["libgptutils.payton"],
}