Files
hardware_interfaces/gnss/1.0/default/Android.bp
Steven Moreland 90e3a50f03 Automatic mk -> bp.
Automatic mk -> bp conversion for all modules here
which can be converted and built automatically.

Test: Soong resolves all dependencies
Bug: 37512442
Change-Id: Ib789212cb88d55731397c600d132e7c672c0d8be
2017-11-03 16:30:28 +00:00

55 lines
1.1 KiB
Plaintext

cc_library_shared {
name: "android.hardware.gnss@1.0-impl",
vendor: true,
relative_install_path: "hw",
srcs: [
"ThreadCreationWrapper.cpp",
"AGnss.cpp",
"AGnssRil.cpp",
"Gnss.cpp",
"GnssBatching.cpp",
"GnssDebug.cpp",
"GnssGeofencing.cpp",
"GnssMeasurement.cpp",
"GnssNavigationMessage.cpp",
"GnssNi.cpp",
"GnssXtra.cpp",
"GnssConfiguration.cpp",
"GnssUtils.cpp",
],
shared_libs: [
"liblog",
"libhidlbase",
"libhidltransport",
"libutils",
"android.hardware.gnss@1.0",
"libhardware",
],
cflags: ["-Werror"],
}
cc_binary {
relative_install_path: "hw",
vendor: true,
name: "android.hardware.gnss@1.0-service",
init_rc: ["android.hardware.gnss@1.0-service.rc"],
srcs: ["service.cpp"],
shared_libs: [
"liblog",
"libcutils",
"libdl",
"libbase",
"libutils",
"libhardware",
"libbinder",
"libhidlbase",
"libhidltransport",
"android.hardware.gnss@1.0",
],
}