mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 10:05:19 +00:00
No target to run the tests yet. So, just starting the VTS test suite for UWB with some simple tests. Also, modified the reference HAL implementation to emulate the startuo flow. Bug: 191175259 Test: atest VtsHalUwbTargetTest (using reference HAL on cuttlefish) Change-Id: I2f01a3fec3324e85123d1d17e1b03dd284aee7b1
29 lines
741 B
Plaintext
29 lines
741 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: "VtsHalUwbTargetTest",
|
|
defaults: [
|
|
"VtsHalTargetTestDefaults",
|
|
"use_libaidlvintf_gtest_helper_static",
|
|
],
|
|
srcs: ["VtsHalUwbTargetTest.cpp"],
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libbinder_ndk",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.uwb-V1-ndk",
|
|
],
|
|
test_suites: [
|
|
"general-tests",
|
|
"vts",
|
|
],
|
|
}
|