1// 2// Copyright (C) 2019 The Android Open Source Project 3// 4// Licensed under the Apache License, Version 2.0 (the "License"); 5// you may not use this file except in compliance with the License. 6// You may obtain a copy of the License at 7// 8// http://www.apache.org/licenses/LICENSE-2.0 9// 10// Unless required by applicable law or agreed to in writing, software 11// distributed under the License is distributed on an "AS IS" BASIS, 12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13// See the License for the specific language governing permissions and 14// limitations under the License. 15// 16 17apex_defaults { 18 name: "com.android.wifi-defaults", 19 androidManifest: ":com.android.wifi-androidManifest", 20 java_libs: [ 21 "service-wifi", 22 "framework-wifi", 23 ], 24 // from build rule `cacerts_wfa` 25 prebuilts: [ 26 "target-cacert-wifi-674b5f5b.0", 27 "target-cacert-wifi-21125ccd.0", 28 "target-cacert-wifi-ea93cb5b.0", 29 ], 30 key: "com.android.wifi.key", 31 certificate: ":com.android.wifi.certificate", 32 apps: [ 33 "OsuLogin", 34 "ServiceWifiResources", 35 ], 36} 37 38filegroup { 39 name: "com.android.wifi-androidManifest", 40 srcs: ["AndroidManifest.xml"], 41} 42 43// Mainline wifi apex module. 44apex { 45 name: "com.android.wifi", 46 defaults: ["com.android.wifi-defaults"], 47 manifest: "apex_manifest.json", 48} 49 50apex_key { 51 name: "com.android.wifi.key", 52 public_key: "com.android.wifi.avbpubkey", 53 private_key: "com.android.wifi.pem", 54} 55 56android_app_certificate { 57 name: "com.android.wifi.certificate", 58 certificate: "com.android.wifi", 59} 60