You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.2 KiB
68 lines
1.2 KiB
bootstrap_go_package {
|
|
name: "soong-pq_init",
|
|
pkgPath: "android/soong/pq_init",
|
|
deps: [
|
|
"blueprint",
|
|
"blueprint-pathtools",
|
|
"soong",
|
|
"soong-android",
|
|
"soong-cc",
|
|
"soong-genrule",
|
|
],
|
|
srcs: [
|
|
"include_dirs.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|
|
|
|
cc_pq_init {
|
|
name: "cc_pq_init_defaults"
|
|
}
|
|
|
|
cc_binary {
|
|
name: "pq_init",
|
|
defaults: [
|
|
"cc_pq_init_defaults"
|
|
],
|
|
compile_multilib: "64",
|
|
init_rc: ["init.pq-init.rc"],
|
|
vendor: true,
|
|
srcs: [
|
|
"main.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libutils",
|
|
"libcutils",
|
|
"liblog",
|
|
"libpq",
|
|
"libui",
|
|
],
|
|
include_dirs: [
|
|
"hardware/rockchip/libpq/include/",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "pq_init_32",
|
|
defaults: [
|
|
"cc_pq_init_defaults"
|
|
],
|
|
compile_multilib: "32",
|
|
init_rc: ["init.pq-init-32.rc"],
|
|
vendor: true,
|
|
srcs: [
|
|
"main.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libutils",
|
|
"libcutils",
|
|
"liblog",
|
|
"libpq",
|
|
"libui",
|
|
],
|
|
include_dirs: [
|
|
"hardware/rockchip/libpq/include/",
|
|
],
|
|
}
|
|
|