1cc_library_shared { 2 name: "[email protected]", 3 defaults: ["hidl_defaults"], 4 vendor: true, 5 relative_install_path: "hw", 6 srcs: [ 7 "ThreadCreationWrapper.cpp", 8 "AGnss.cpp", 9 "AGnssRil.cpp", 10 "Gnss.cpp", 11 "GnssBatching.cpp", 12 "GnssDebug.cpp", 13 "GnssGeofencing.cpp", 14 "GnssMeasurement.cpp", 15 "GnssNavigationMessage.cpp", 16 "GnssNi.cpp", 17 "GnssXtra.cpp", 18 "GnssConfiguration.cpp", 19 "GnssUtils.cpp", 20 ], 21 22 shared_libs: [ 23 "liblog", 24 "libhidlbase", 25 "libutils", 26 "[email protected]", 27 "libhardware", 28 ], 29 30} 31 32cc_binary { 33 relative_install_path: "hw", 34 vendor: true, 35 name: "[email protected]", 36 defaults: ["hidl_defaults"], 37 init_rc: ["[email protected]"], 38 srcs: ["service.cpp"], 39 40 shared_libs: [ 41 "liblog", 42 "libcutils", 43 "libdl", 44 "libbase", 45 "libutils", 46 "libhardware", 47 "libbinder", 48 "libhidlbase", 49 "[email protected]", 50 ], 51 52} 53