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.
41 lines
862 B
41 lines
862 B
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_qcom_sm7250_gps_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-BSD
|
|
default_applicable_licenses: ["hardware_qcom_sm7250_gps_license"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
|
|
name: "libbatching",
|
|
vendor: true,
|
|
|
|
sanitize: GNSS_SANITIZE,
|
|
|
|
shared_libs: [
|
|
"libutils",
|
|
"libcutils",
|
|
"liblog",
|
|
"libloc_core",
|
|
"libgps.utils",
|
|
"libdl",
|
|
],
|
|
|
|
srcs: [
|
|
"location_batching.cpp",
|
|
"BatchingAdapter.cpp",
|
|
],
|
|
|
|
header_libs: [
|
|
"libgps.utils_headers",
|
|
"libloc_core_headers",
|
|
"libloc_pla_headers",
|
|
"liblocation_api_headers",
|
|
],
|
|
|
|
cflags: GNSS_CFLAGS,
|
|
}
|