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.

64 lines
1.3 KiB

package {
// http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// the below license kinds from "hardware_qcom_sm8150_gps_license":
// SPDX-license-identifier-Apache-2.0
// SPDX-license-identifier-BSD
default_applicable_licenses: ["hardware_qcom_sm8150_gps_license"],
}
cc_library_shared {
name: "libgps.utils",
vendor: true,
sanitize: GNSS_SANITIZE,
//# Libs
shared_libs: [
"libdl",
"libutils",
"libcutils",
"liblog",
"libprocessgroup",
],
srcs: [
"loc_log.cpp",
"loc_cfg.cpp",
"msg_q.c",
"linked_list.c",
"loc_target.cpp",
"LocHeap.cpp",
"LocTimer.cpp",
"LocThread.cpp",
"MsgTask.cpp",
"loc_misc_utils.cpp",
"loc_nmea.cpp",
"LocIpc.cpp",
"LogBuffer.cpp",
],
cflags: [
"-fno-short-enums",
"-D_ANDROID_",
] + GNSS_CFLAGS,
//# Includes
ldflags: ["-Wl,--export-dynamic"],
header_libs: [
"libutils_headers",
"libloc_pla_headers",
"liblocation_api_headers",
],
}
cc_library_headers {
name: "libgps.utils_headers",
export_include_dirs: ["."],
vendor: true,
}