summaryrefslogtreecommitdiff
path: root/wifi/hostapd/aidl/vts/functional/Android.bp
diff options
context:
space:
mode:
authorChris Ye <lzye@google.com>2021-06-24 12:52:55 -0700
committerChris Ye <lzye@google.com>2021-09-01 23:17:16 -0700
commitd13f7b5495ad24c55db817f192ff7632b350da5c (patch)
treee3e5b898fe0b5c873b1f07ba7aee3acdc5d7f49b /wifi/hostapd/aidl/vts/functional/Android.bp
parent334a6134deb33e3ebdb1c5b5e1989a5e049ed3b2 (diff)
Add Wifi HAL hostapd AIDL interface definitions.
Add AIDL version of Wifi HAL hostapd interfaces, converted from android.hardware.wifi.hostapd@1.3 HIDL interfaces. Bug: 194806512 Test: m android.hardware.wifi.hostapd-update-api Change-Id: I1035f8bc9171e59967448fa438f2cc79ad53c066
Diffstat (limited to 'wifi/hostapd/aidl/vts/functional/Android.bp')
-rw-r--r--wifi/hostapd/aidl/vts/functional/Android.bp27
1 files changed, 27 insertions, 0 deletions
diff --git a/wifi/hostapd/aidl/vts/functional/Android.bp b/wifi/hostapd/aidl/vts/functional/Android.bp
new file mode 100644
index 0000000000..d37da08385
--- /dev/null
+++ b/wifi/hostapd/aidl/vts/functional/Android.bp
@@ -0,0 +1,27 @@
+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: "VtsHalHostapdTargetTest",
+ defaults: [
+ "VtsHalTargetTestDefaults",
+ "use_libaidlvintf_gtest_helper_static",
+ ],
+ srcs: ["VtsHalHostapdTargetTest.cpp"],
+ shared_libs: [
+ "libbinder",
+ ],
+ static_libs: [
+ "android.hardware.wifi.hostapd-V1-cpp",
+ ],
+ test_suites: [
+ "general-tests",
+ "vts",
+ ],
+}