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.
59 lines
1.1 KiB
59 lines
1.1 KiB
cc_library_headers {
|
|
name: "libvendor_camera_source_headers",
|
|
vendor: true,
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libvendor_camera",
|
|
proprietary: true,
|
|
compile_multilib: "both",
|
|
|
|
srcs: [
|
|
"*.c",
|
|
"manager/*.c"
|
|
],
|
|
|
|
include_dirs: [
|
|
"vendor/platform/secure_c/include",
|
|
],
|
|
|
|
local_include_dirs: [
|
|
"include",
|
|
],
|
|
|
|
header_libs: [
|
|
"drv_generic_headers",
|
|
"libvendor_camera_headers",
|
|
"libvendor_camera_source_headers",
|
|
"libuapi_generic_headers",
|
|
],
|
|
|
|
export_header_lib_headers: [
|
|
"libvendor_camera_headers",
|
|
"libvendor_camera_source_headers",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libcutils",
|
|
"libutils",
|
|
"libdl",
|
|
"liblog",
|
|
"libuapi_securec",
|
|
"libvendor_camera_utils",
|
|
],
|
|
|
|
static_libs: [
|
|
"libvendor_camera_common",
|
|
"libvendor_camera_commondef",
|
|
"libvendor_camera_extws",
|
|
],
|
|
|
|
cflags: [
|
|
"-fno-common",
|
|
"-Werror",
|
|
],
|
|
clang: true,
|
|
}
|
|
|