26 lines
549 B
Plaintext
26 lines
549 B
Plaintext
// Copyright (C) 2025 oxmc / PawletOS
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
cc_binary {
|
|
name: "android.hardware.boot-service.pawlet_rpi",
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
|
|
srcs: [
|
|
"BootControl.cpp",
|
|
"service.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"android.hardware.boot-V1-ndk",
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"liblog",
|
|
"libz",
|
|
],
|
|
|
|
init_rc: ["android.hardware.boot-service.pawlet_rpi.rc"],
|
|
vintf_fragments: ["android.hardware.boot-service.pawlet_rpi.xml"],
|
|
}
|