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.
60 lines
1008 B
60 lines
1008 B
cc_library_headers {
|
|
name: "libiep_headers",
|
|
vendor: true,
|
|
export_include_dirs: [
|
|
"include",
|
|
],
|
|
}
|
|
|
|
cc_prebuilt_library {
|
|
name: "libiep",
|
|
compile_multilib: "both",
|
|
multilib: {
|
|
lib64: {
|
|
srcs: ["lib/arm64/libiep.so"],
|
|
},
|
|
lib32: {
|
|
srcs: ["lib/arm/libiep.so"],
|
|
},
|
|
},
|
|
|
|
strip: {
|
|
none: true,
|
|
},
|
|
|
|
header_libs: [
|
|
"libiep_headers",
|
|
],
|
|
|
|
export_header_lib_headers: ["libiep_headers"],
|
|
|
|
check_elf_files: false,
|
|
vendor: true,
|
|
}
|
|
|
|
cc_prebuilt_library {
|
|
name: "libiep_vehicle",
|
|
compile_multilib: "both",
|
|
multilib: {
|
|
lib64: {
|
|
srcs: ["lib/arm64/libiep_vehicle.so"],
|
|
},
|
|
lib32: {
|
|
srcs: ["lib/arm/libiep_vehicle.so"],
|
|
},
|
|
},
|
|
|
|
strip: {
|
|
none: true,
|
|
},
|
|
|
|
header_libs: [
|
|
"libiep_headers",
|
|
],
|
|
|
|
export_header_lib_headers: ["libiep_headers"],
|
|
|
|
check_elf_files: false,
|
|
vendor: true,
|
|
}
|