Gabriel Biren | 28a4812 | 2021-10-26 21:00:47 +0000 | [diff] [blame] | 1 | // Copyright (C) 2021 The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Bob Badour | 6acef46 | 2022-01-05 11:14:10 -0800 | [diff] [blame] | 15 | package { |
Aditya Choudhary | ad2ba1b | 2024-02-05 15:45:22 +0000 | [diff] [blame] | 16 | default_team: "trendy_team_fwk_wifi_hal", |
Bob Badour | 6acef46 | 2022-01-05 11:14:10 -0800 | [diff] [blame] | 17 | // See: http://go/android-license-faq |
| 18 | // A large-scale-change added 'default_applicable_licenses' to import |
| 19 | // all of the 'license_kinds' from "hardware_interfaces_license" |
| 20 | // to get the below license kinds: |
| 21 | // SPDX-license-identifier-Apache-2.0 |
| 22 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 23 | } |
| 24 | |
Gabriel Biren | 28a4812 | 2021-10-26 21:00:47 +0000 | [diff] [blame] | 25 | aidl_interface { |
| 26 | name: "android.hardware.wifi.supplicant", |
| 27 | vendor_available: true, |
| 28 | srcs: [ |
| 29 | "android/hardware/wifi/supplicant/*.aidl", |
| 30 | ], |
Gabriel Biren | 677bc0f | 2023-12-04 22:34:33 +0000 | [diff] [blame] | 31 | imports: [ |
| 32 | "android.hardware.wifi.common-V1", |
| 33 | ], |
Gabriel Biren | 28a4812 | 2021-10-26 21:00:47 +0000 | [diff] [blame] | 34 | stability: "vintf", |
| 35 | backend: { |
| 36 | java: { |
| 37 | sdk_version: "module_current", |
| 38 | apex_available: [ |
| 39 | "//apex_available:platform", |
| 40 | "com.android.wifi", |
| 41 | ], |
| 42 | min_sdk_version: "30", |
Gabriel Biren | fb8b891 | 2023-03-16 23:31:08 +0000 | [diff] [blame] | 43 | lint: { |
| 44 | // Disable linter to avoid error about fixed size arrays. |
| 45 | // Interface will only be accessed on devices >= T. |
| 46 | enabled: false, |
| 47 | }, |
Gabriel Biren | 28a4812 | 2021-10-26 21:00:47 +0000 | [diff] [blame] | 48 | }, |
Chris Ye | 3a7840b | 2022-06-29 11:14:53 -0700 | [diff] [blame] | 49 | ndk: { |
| 50 | gen_trace: true, |
| 51 | }, |
Gabriel Biren | 677bc0f | 2023-12-04 22:34:33 +0000 | [diff] [blame] | 52 | cpp: { |
| 53 | enabled: false, |
| 54 | }, |
Steven Moreland | c8e974d | 2024-01-30 00:24:10 +0000 | [diff] [blame] | 55 | rust: { |
| 56 | enabled: false, |
| 57 | }, |
Gabriel Biren | 28a4812 | 2021-10-26 21:00:47 +0000 | [diff] [blame] | 58 | }, |
Jiyong Park | 70f5837 | 2022-04-16 07:03:24 +0900 | [diff] [blame] | 59 | versions_with_info: [ |
| 60 | { |
| 61 | version: "1", |
| 62 | imports: [], |
| 63 | }, |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame] | 64 | { |
| 65 | version: "2", |
| 66 | imports: [], |
| 67 | }, |
Devin Moore | a8efdb1 | 2024-02-20 17:31:40 +0000 | [diff] [blame] | 68 | { |
| 69 | version: "3", |
| 70 | imports: ["android.hardware.wifi.common-V1"], |
| 71 | }, |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame] | 72 | |
Jiyong Park | 70f5837 | 2022-04-16 07:03:24 +0900 | [diff] [blame] | 73 | ], |
Sunil Ravi | 39f8625 | 2024-09-18 04:40:22 +0000 | [diff] [blame] | 74 | frozen: false, |
Gabriel Biren | 28a4812 | 2021-10-26 21:00:47 +0000 | [diff] [blame] | 75 | } |