1 2 3cc_library_shared { 4 5 name: "libgeofencing", 6 vendor: true, 7 8 sanitize: GNSS_SANITIZE, 9 10 srcs: [ 11 "GeofenceAdapter.cpp", 12 "location_geofence.cpp", 13 ], 14 15 shared_libs: [ 16 "libutils", 17 "libcutils", 18 "libgps.utils", 19 "liblog", 20 "libloc_core", 21 ], 22 23 header_libs: [ 24 "libgps.utils_headers", 25 "libloc_core_headers", 26 "libloc_pla_headers", 27 "liblocation_api_headers", 28 ], 29 30 cflags: GNSS_CFLAGS, 31} 32