blob: 70c2741282661eebd905276f7596018905f5e367 [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 Pius807b34a2020-02-24 09:12:52 -080050 "java/android/net/wifi/WifiMigration.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 Su3c0d1972020-03-16 15:53:48 -070075 sdk_version: "module_current",
David Su511a8142020-01-09 14:02:21 -080076 static_libs: [
77 "framework-wifi-util-lib",
David Su369c9202020-01-09 18:09:56 -080078 "android.hardware.wifi-V1.0-java-constants",
David Su511a8142020-01-09 14:02:21 -080079 ],
David Su754fcc22019-09-04 14:31:58 -070080 libs: [
David Su369c9202020-01-09 18:09:56 -080081 "framework-annotations-lib",
82 "unsupportedappusage", // for android.compat.annotation.UnsupportedAppUsage
83 "unsupportedappusage-annotation", // for dalvik.annotation.compat.UnsupportedAppUsage
Chen Xu546ce5e2020-01-10 08:38:31 -080084 "framework-telephony-stubs",
David Su754fcc22019-09-04 14:31:58 -070085 ],
86 srcs: [
87 ":framework-wifi-updatable-sources",
David Su72f9d632020-02-10 15:58:26 -080088 ":framework-wifi-util-lib-aidls",
David Su754fcc22019-09-04 14:31:58 -070089 ],
David Sua6f0c862020-01-21 16:45:50 -080090 // java_api_finder must accompany `srcs`
91 plugins: ["java_api_finder"],
David Su511a8142020-01-09 14:02:21 -080092 installable: false,
93 visibility: [
94 "//frameworks/opt/net/wifi/service",
95 "//frameworks/opt/net/wifi/tests/wifitests",
96 ],
97}
98
99// post-jarjar version of framework-wifi
100java_library {
101 name: "framework-wifi",
David Su3c0d1972020-03-16 15:53:48 -0700102 sdk_version: "module_current",
David Su511a8142020-01-09 14:02:21 -0800103 static_libs: [
104 "framework-wifi-pre-jarjar",
105 ],
106 jarjar_rules: ":wifi-jarjar-rules",
107
David Su754fcc22019-09-04 14:31:58 -0700108 installable: true,
109 optimize: {
110 enabled: false
David Su90ed1052019-12-18 18:20:28 -0800111 },
Jiyong Parkc81df3f2020-01-06 13:30:59 +0900112 hostdex: true, // for hiddenapi check
David Su90ed1052019-12-18 18:20:28 -0800113 visibility: [
David Su90ed1052019-12-18 18:20:28 -0800114 "//frameworks/opt/net/wifi/service:__subpackages__",
115 ] + test_access_hidden_api_whitelist,
Jiyong Parkc81df3f2020-01-06 13:30:59 +0900116 apex_available: [
117 "com.android.wifi",
118 "test_com.android.wifi",
119 ],
David Su754fcc22019-09-04 14:31:58 -0700120}
121
Anton Hansson6656c502020-02-05 09:49:35 +0000122stubs_defaults {
123 name: "framework-wifi-stubs-srcs-defaults",
Anton Hanssond20f0302020-02-05 09:46:24 +0000124 srcs: [
Anton Hanssond20f0302020-02-05 09:46:24 +0000125 ":framework-wifi-updatable-sources",
Anton Hansson6656c502020-02-05 09:49:35 +0000126 ":framework-wifi-util-lib-aidls",
Anton Hanssond20f0302020-02-05 09:46:24 +0000127 ],
Anton Hansson6656c502020-02-05 09:49:35 +0000128 libs: [ "framework-annotations-lib" ],
129 sdk_version: "module_current",
130}
131
132droidstubs {
133 name: "framework-wifi-stubs-srcs-publicapi",
134 defaults: [
135 "framework-module-stubs-defaults-publicapi",
136 "framework-wifi-stubs-srcs-defaults",
137 ],
138}
139
140droidstubs {
141 name: "framework-wifi-stubs-srcs-systemapi",
142 defaults: [
143 "framework-module-stubs-defaults-systemapi",
144 "framework-wifi-stubs-srcs-defaults",
145 ],
146}
147
148droidstubs {
149 name: "framework-wifi-api-module_libs_api",
150 defaults: [
151 "framework-module-api-defaults-module_libs_api",
152 "framework-wifi-stubs-srcs-defaults",
153 ],
154}
155
156droidstubs {
157 name: "framework-wifi-stubs-srcs-module_libs_api",
158 defaults: [
159 "framework-module-stubs-defaults-module_libs_api",
160 "framework-wifi-stubs-srcs-defaults",
161 ],
David Su754fcc22019-09-04 14:31:58 -0700162}
163
164java_library {
Anton Hansson6656c502020-02-05 09:49:35 +0000165 name: "framework-wifi-stubs-publicapi",
166 srcs: [":framework-wifi-stubs-srcs-publicapi"],
Anton Hansson15273532020-03-09 19:14:28 +0000167 sdk_version: "current",
Anton Hansson6656c502020-02-05 09:49:35 +0000168 installable: false,
169}
170
171java_library {
172 name: "framework-wifi-stubs-systemapi",
173 srcs: [":framework-wifi-stubs-srcs-systemapi"],
Anton Hansson15273532020-03-09 19:14:28 +0000174 sdk_version: "system_current",
Anton Hansson6656c502020-02-05 09:49:35 +0000175 libs: ["framework-annotations-lib"],
176 installable: false,
177}
178
179java_library {
180 name: "framework-wifi-stubs-module_libs_api",
181 srcs: [":framework-wifi-stubs-srcs-module_libs_api"],
182 sdk_version: "module_current",
183 libs: ["framework-annotations-lib"],
David Su754fcc22019-09-04 14:31:58 -0700184 installable: false,
185}
186
David Su90ed1052019-12-18 18:20:28 -0800187// defaults for tests that need to build against framework-wifi's @hide APIs
188java_defaults {
189 name: "framework-wifi-test-defaults",
190 sdk_version: "core_platform", // tests can use @CorePlatformApi's
191 libs: [
David Succ38e1f2020-01-07 19:47:28 -0800192 // order matters: classes in framework-wifi are resolved before framework, meaning
193 // @hide APIs in framework-wifi are resolved before @SystemApi stubs in framework
David Su90ed1052019-12-18 18:20:28 -0800194 "framework-wifi",
David Succ38e1f2020-01-07 19:47:28 -0800195 "framework",
David Su90ed1052019-12-18 18:20:28 -0800196
197 // if sdk_version="" this gets automatically included, but here we need to add manually.
198 "framework-res",
199 ],
200 visibility: test_access_hidden_api_whitelist,
201}
David Su511a8142020-01-09 14:02:21 -0800202
203filegroup {
204 name: "wifi-jarjar-rules",
205 srcs: ["jarjar-rules.txt"],
206}