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.
36 lines
567 B
36 lines
567 B
cc_library_shared {
|
|
vendor: true,
|
|
srcs: ["CustUtils.cpp"],
|
|
|
|
include_dirs:[
|
|
"vendor/platform/secure_c/include",
|
|
],
|
|
local_include_dirs: [""],
|
|
|
|
shared: {
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
"libuapi_securec",
|
|
],
|
|
},
|
|
|
|
header_libs: [
|
|
"libcutils_headers",
|
|
"liblog_headers",
|
|
"libcust_headers",
|
|
],
|
|
|
|
export_header_lib_headers: [
|
|
"libcust_headers",
|
|
],
|
|
|
|
name: "libcust",
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall"
|
|
],
|
|
clang: true,
|
|
}
|