1
2package {
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "hardware_qcom_sm7250_gps_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-BSD
8    default_applicable_licenses: ["hardware_qcom_sm7250_gps_license"],
9}
10
11cc_library_shared {
12
13    name: "libbatching",
14    vendor: true,
15
16    sanitize: GNSS_SANITIZE,
17
18    shared_libs: [
19        "libutils",
20        "libcutils",
21        "liblog",
22        "libloc_core",
23        "libgps.utils",
24        "libdl",
25    ],
26
27    srcs: [
28        "location_batching.cpp",
29        "BatchingAdapter.cpp",
30    ],
31
32    header_libs: [
33        "libgps.utils_headers",
34        "libloc_core_headers",
35        "libloc_pla_headers",
36        "liblocation_api_headers",
37    ],
38
39    cflags: GNSS_CFLAGS,
40}
41