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