mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-03 07:28:14 +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 Change-Id: Ibe8beeaf0d1b33968fb782f1f70c17ae9e9bf871
28 lines
730 B
Plaintext
28 lines
730 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_test {
|
|
name: "VtsHalMemtrackTargetTest",
|
|
defaults: [
|
|
"VtsHalTargetTestDefaults",
|
|
"use_libaidlvintf_gtest_helper_static",
|
|
],
|
|
srcs: ["VtsHalMemtrackTargetTest.cpp"],
|
|
shared_libs: [
|
|
"libbinder_ndk",
|
|
"libvintf",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.memtrack-V1-ndk",
|
|
],
|
|
test_suites: [
|
|
"vts",
|
|
],
|
|
}
|