mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-03 03:14:17 +00:00
The ndk_platform backend will soon be deprecated because the ndk backend
can serve the same purpose. This is to eliminate the confusion about
having two variants (ndk and ndk_platform) for the same ndk backend.
Bug: 161456198
Test: m
Merged-In: I0652f1efe920111d79dd8c2ecd52e55dda54538f
Change-Id: Ib58c9f1cb80d083a3c62d03415610be855b80f03
(cherry picked from commit c426c6dbdc)
36 lines
1018 B
Plaintext
36 lines
1018 B
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.gnss@1.1-service",
|
|
init_rc: ["android.hardware.gnss@1.1-service.rc"],
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
srcs: [
|
|
"Gnss.cpp",
|
|
"GnssDebug.cpp",
|
|
"GnssConfiguration.cpp",
|
|
"GnssMeasurement.cpp",
|
|
"service.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libutils",
|
|
"liblog",
|
|
"android.hardware.gnss@2.1",
|
|
"android.hardware.gnss@2.0",
|
|
"android.hardware.gnss@1.1",
|
|
"android.hardware.gnss@1.0",
|
|
"android.hardware.gnss-V1-ndk",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.gnss@common-default-lib",
|
|
],
|
|
}
|