blob: 5c9fb4e86bc7f9679815e947b1f924391fad7698 [file] [log] [blame]
David Su754fcc22019-09-04 14:31:58 -07001// Copyright (C) 2019 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
David Su6dcd7682020-01-21 11:23:00 -080015filegroup {
16 name: "framework-wifi-updatable-exported-aidl-sources",
17 srcs: ["aidl-export/**/*.aidl"],
18 path: "aidl-export",
19 visibility: ["//visibility:private"],
20}
David Su754fcc22019-09-04 14:31:58 -070021
22filegroup {
David Su6dcd7682020-01-21 11:23:00 -080023 name: "framework-wifi-updatable-java-sources",
David Su754fcc22019-09-04 14:31:58 -070024 srcs: [
25 "java/**/*.java",
26 "java/**/*.aidl",
27 ],
28 exclude_srcs: [
29 ":framework-wifi-non-updatable-sources"
30 ],
31 path: "java",
David Su6dcd7682020-01-21 11:23:00 -080032 visibility: ["//visibility:private"],
33}
34
35filegroup {
36 name: "framework-wifi-updatable-sources",
37 srcs: [
38 ":framework-wifi-updatable-java-sources",
39 ":framework-wifi-updatable-exported-aidl-sources",
40 ],
David Su754fcc22019-09-04 14:31:58 -070041}
42
43filegroup {
44 name: "framework-wifi-non-updatable-sources",
45 srcs: [
46 // TODO(b/146011398) package android.net.wifi is now split amongst 2 jars: framework.jar and
47 // framework-wifi.jar. This is not a good idea, should move WifiNetworkScoreCache
48 // to a separate package.
49 "java/android/net/wifi/WifiNetworkScoreCache.java",
Roshan Pius0ebf6f12020-02-06 10:14:07 -080050 "java/android/net/wifi/WifiOemMigrationHook.java",
Etan Cohen804d94a2020-02-15 17:33:27 -080051 "java/android/net/wifi/nl80211/*.java",
David Su754fcc22019-09-04 14:31:58 -070052 ":libwificond_ipc_aidl",
53 ],
54}
55
David Su130441b2019-12-14 21:37:20 -080056filegroup {
57 name: "framework-wifi-annotations",
58 srcs: ["java/android/net/wifi/WifiAnnotations.java"],
59}
60
David Su90ed1052019-12-18 18:20:28 -080061// list of tests that are allowed to access @hide APIs from framework-wifi
62test_access_hidden_api_whitelist = [
63 "//frameworks/base/wifi/tests",
64 "//frameworks/opt/net/wifi/tests/wifitests:__subpackages__",
David Su434fe602019-12-18 21:22:21 -080065
David Su4c5bab62020-01-07 13:01:30 -080066 "//external/robolectric-shadows:__subpackages__",
David Su6c00e382020-01-06 15:24:42 -080067 "//frameworks/base/packages/SettingsLib/tests/integ",
David Su812a8f12020-01-11 16:22:00 -080068 "//external/sl4a:__subpackages__",
David Su90ed1052019-12-18 18:20:28 -080069]
70
David Su511a8142020-01-09 14:02:21 -080071// wifi-service needs pre-jarjared version of framework-wifi so it can reference copied utility
72// classes before they are renamed.
David Su754fcc22019-09-04 14:31:58 -070073java_library {
David Su511a8142020-01-09 14:02:21 -080074 name: "framework-wifi-pre-jarjar",
David Su439175f2020-01-17 21:16:31 +000075 // TODO(b/146757305): sdk_version should be "module_lib_current"
76 sdk_version: "core_current",
David Su511a8142020-01-09 14:02:21 -080077 static_libs: [
78 "framework-wifi-util-lib",
David Su369c9202020-01-09 18:09:56 -080079 "android.hardware.wifi-V1.0-java-constants",
David Su511a8142020-01-09 14:02:21 -080080 ],
David Su754fcc22019-09-04 14:31:58 -070081 libs: [
David Su369c9202020-01-09 18:09:56 -080082 "framework-annotations-lib",
83 "unsupportedappusage", // for android.compat.annotation.UnsupportedAppUsage
84 "unsupportedappusage-annotation", // for dalvik.annotation.compat.UnsupportedAppUsage
Chen Xu546ce5e2020-01-10 08:38:31 -080085 "framework-telephony-stubs",
David Su439175f2020-01-17 21:16:31 +000086 // TODO(b/146757305): should be unnecessary once
87 // sdk_version="module_lib_current"
88 "android_system_stubs_current",
David Su754fcc22019-09-04 14:31:58 -070089 ],
90 srcs: [
91 ":framework-wifi-updatable-sources",
92 ],
David Sua6f0c862020-01-21 16:45:50 -080093 // java_api_finder must accompany `srcs`
94 plugins: ["java_api_finder"],
David Su511a8142020-01-09 14:02:21 -080095 installable: false,
96 visibility: [
97 "//frameworks/opt/net/wifi/service",
98 "//frameworks/opt/net/wifi/tests/wifitests",
99 ],
David Su439175f2020-01-17 21:16:31 +0000100
101 // TODO(b/146757305): should be unnecessary once
102 // sdk_version="module_lib_current"
103 aidl: {
104 include_dirs: [
105 "frameworks/base/core/java",
106 ],
107 },
David Su511a8142020-01-09 14:02:21 -0800108}
109
110// post-jarjar version of framework-wifi
111java_library {
112 name: "framework-wifi",
David Su439175f2020-01-17 21:16:31 +0000113 // TODO(b/146757305): sdk_version should be "module_lib_current"
114 sdk_version: "core_current",
David Su511a8142020-01-09 14:02:21 -0800115 static_libs: [
116 "framework-wifi-pre-jarjar",
117 ],
118 jarjar_rules: ":wifi-jarjar-rules",
119
David Su754fcc22019-09-04 14:31:58 -0700120 installable: true,
121 optimize: {
122 enabled: false
David Su90ed1052019-12-18 18:20:28 -0800123 },
Jiyong Parkc81df3f2020-01-06 13:30:59 +0900124 hostdex: true, // for hiddenapi check
David Su90ed1052019-12-18 18:20:28 -0800125 visibility: [
David Su90ed1052019-12-18 18:20:28 -0800126 "//frameworks/opt/net/wifi/service:__subpackages__",
127 ] + test_access_hidden_api_whitelist,
Jiyong Parkc81df3f2020-01-06 13:30:59 +0900128 apex_available: [
129 "com.android.wifi",
130 "test_com.android.wifi",
131 ],
David Su754fcc22019-09-04 14:31:58 -0700132}
133
Anton Hanssond20f0302020-02-05 09:46:24 +0000134droidstubs {
135 name: "framework-wifi-stubs-srcs",
136 srcs: [
137 ":framework-annotations",
138 ":framework-wifi-updatable-sources",
139 ],
David Suc6513592020-01-15 22:55:20 +0000140 // This is needed as IOnWifiActivityEnergyInfoListener.aidl in framework-wifi depends on
141 // WifiActivityEnergyInfo.aidl in framework-minus-apex
David Su754fcc22019-09-04 14:31:58 -0700142 aidl: {
143 include_dirs: ["frameworks/base/core/java"],
144 },
Anton Hanssond20f0302020-02-05 09:46:24 +0000145 defaults: [ "framework-module-stubs-defaults-systemapi" ],
146 sdk_version: "core_current",
147 libs: ["android_system_stubs_current"],
David Su754fcc22019-09-04 14:31:58 -0700148}
149
150java_library {
Anton Hanssond20f0302020-02-05 09:46:24 +0000151 name: "framework-wifi-stubs",
152 srcs: [":framework-wifi-stubs-srcs"],
153 sdk_version: "core_current",
154 libs: ["android_system_stubs_current"],
David Su754fcc22019-09-04 14:31:58 -0700155 installable: false,
156}
157
David Su90ed1052019-12-18 18:20:28 -0800158// defaults for tests that need to build against framework-wifi's @hide APIs
159java_defaults {
160 name: "framework-wifi-test-defaults",
161 sdk_version: "core_platform", // tests can use @CorePlatformApi's
162 libs: [
David Succ38e1f2020-01-07 19:47:28 -0800163 // order matters: classes in framework-wifi are resolved before framework, meaning
164 // @hide APIs in framework-wifi are resolved before @SystemApi stubs in framework
David Su90ed1052019-12-18 18:20:28 -0800165 "framework-wifi",
David Succ38e1f2020-01-07 19:47:28 -0800166 "framework",
David Su90ed1052019-12-18 18:20:28 -0800167
168 // if sdk_version="" this gets automatically included, but here we need to add manually.
169 "framework-res",
170 ],
171 visibility: test_access_hidden_api_whitelist,
172}
David Su511a8142020-01-09 14:02:21 -0800173
174filegroup {
175 name: "wifi-jarjar-rules",
176 srcs: ["jarjar-rules.txt"],
177}