
* Needed for device specific gpt-utils. Change-Id: I1d9e1b4727728f776594f630f639bd4ca7c4309c
39 lines
772 B
Plaintext
39 lines
772 B
Plaintext
filegroup {
|
|
name: "libboot_control_qti_src",
|
|
srcs: ["libboot_control_qti.cpp"],
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libboot_control_qti_headers",
|
|
vendor: true,
|
|
recovery_available: true,
|
|
export_include_dirs: ["."],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "libboot_control_qti_defaults",
|
|
vendor: true,
|
|
recovery_available: true,
|
|
shared_libs: [
|
|
"android.hardware.boot@1.1",
|
|
"libbase",
|
|
"libcutils",
|
|
"liblog",
|
|
"libz",
|
|
],
|
|
static_libs: [
|
|
"libboot_control",
|
|
"libbootloader_message_vendor",
|
|
"libfstab",
|
|
],
|
|
owner: "qti",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
srcs: [
|
|
":libboot_control_qti_src",
|
|
],
|
|
header_libs: ["libboot_control_qti_headers"],
|
|
}
|