1 2package { 3 // http://go/android-license-faq 4 // A large-scale-change added 'default_applicable_licenses' to import 5 // the below license kinds from "hardware_qcom_sm8150_gps_license": 6 // SPDX-license-identifier-BSD 7 default_applicable_licenses: ["hardware_qcom_sm8150_gps_license"], 8} 9 10cc_library_shared { 11 12 name: "libbatching", 13 vendor: true, 14 15 sanitize: GNSS_SANITIZE, 16 17 shared_libs: [ 18 "libutils", 19 "libcutils", 20 "liblog", 21 "libloc_core", 22 "libgps.utils", 23 "libdl", 24 ], 25 26 srcs: [ 27 "location_batching.cpp", 28 "BatchingAdapter.cpp", 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